diff --git a/app/ante/handlers.go b/app/ante/handlers.go index 72d192a6..392a0a65 100644 --- a/app/ante/handlers.go +++ b/app/ante/handlers.go @@ -20,7 +20,7 @@ func newEthAnteHandler(options HandlerOptions) sdk.AnteHandler { ethante.NewEthSigVerificationDecorator(options.EvmKeeper), ethante.NewEthAccountVerificationDecorator(options.AccountKeeper, options.EvmKeeper), ethante.NewCanTransferDecorator(options.EvmKeeper), - ethante.NewVirtualFrontierContractDecorator(options.EvmKeeper), // prevent transfer to virtual frontier contract + // NOTE: the ethermint code has the VFC blocker here, but we don't need it https://github.com/dymensionxyz/rollapp-evm/pull/197#discussion_r1581136564 ethante.NewEthGasConsumeDecorator(options.EvmKeeper, options.MaxTxGasWanted), ethante.NewEthIncrementSenderSequenceDecorator(options.AccountKeeper), // innermost AnteDecorator. ethante.NewGasWantedDecorator(options.EvmKeeper, options.FeeMarketKeeper),