From ec34810c850dec336a245a5a1cf323e95788e0a1 Mon Sep 17 00:00:00 2001 From: danwt <30197399+danwt@users.noreply.github.com> Date: Fri, 26 Apr 2024 16:24:08 +0100 Subject: [PATCH] remove vfc blocker --- app/ante/handlers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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),