diff --git a/app/ante/eth.go b/app/ante/eth.go index a6549f71..5df2b524 100644 --- a/app/ante/eth.go +++ b/app/ante/eth.go @@ -119,7 +119,7 @@ func (emfd EthMempoolFeeDecorator) AnteHandle(ctx sdk.Context, tx sdk.Tx, simula if !ctx.MinGasPrices().IsZero() && !hasEnoughFees { return ctx, sdkerrors.Wrap( sdkerrors.ErrInsufficientFee, - fmt.Sprintf("insufficient fee, got: %q required: %q", fee, ctx.MinGasPrices()), + fmt.Sprintf("insufficient fee, got: %q required: %q", fee, minFees), ) }