Skip to content

Commit 8df5c33

Browse files
authored
Fix ante handler (#1198)
1 parent fa4791d commit 8df5c33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

x/evm/ante/fee.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ func NewEVMFeeCheckDecorator(evmKeeper *evmkeeper.Keeper) *EVMFeeCheckDecorator
2525
func (fc EVMFeeCheckDecorator) AnteHandle(ctx sdk.Context, tx sdk.Tx, simulate bool, next sdk.AnteHandler) (sdk.Context, error) {
2626
// only check fee in CheckTx (similar to normal Sei tx)
2727
if !ctx.IsCheckTx() || simulate {
28-
return ctx, nil
28+
return next(ctx, tx, simulate)
2929
}
3030

3131
msg := evmtypes.MustGetEVMTransactionMessage(tx)

0 commit comments

Comments
 (0)