ante: fix fee print error (#756)

Co-authored-by: Federico Kunze <31522760+fedekunze@users.noreply.github.com>
This commit is contained in:
AaronZgl
2021-01-29 02:16:37 -03:00
committed by GitHub
co-authored by Federico Kunze
parent c95ad0432b
commit e1349e46a3
+1 -1
View File
@@ -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),
)
}