diff --git a/app/evmante/evmante_sigverify.go b/app/evmante/evmante_sigverify.go index 31c4a1a7f..ff9918180 100644 --- a/app/evmante/evmante_sigverify.go +++ b/app/evmante/evmante_sigverify.go @@ -47,9 +47,8 @@ func (esvd EthSigVerificationDecorator) AnteHandle( ) } - allowUnprotectedTxs := false ethTx := msgEthTx.AsTransaction() - if !allowUnprotectedTxs && !ethTx.Protected() { + if !ethTx.Protected() { return ctx, errors.Wrapf( sdkerrors.ErrNotSupported, "rejected unprotected Ethereum transaction. "+