Skip to content

Commit

Permalink
fix: remove min gas price logs (#654)
Browse files Browse the repository at this point in the history
  • Loading branch information
cosmic-vagabond authored Jul 16, 2024
1 parent a5ba1a0 commit 8ee5338
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/ante/validator_tx_fee.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ func CheckTxFeeWithValidatorMinGasPrices(ctx sdk.Context, tx sdk.Tx) (sdk.Coins,
return nil, 0, errorsmod.Wrap(sdkerrors.ErrLogic, "invalid gas price")
}
minGasPrices = sdk.NewDecCoins(minGasPrice)
}

// print minGasPrices
ctx.Logger().Info("Minimum gas prices: " + minGasPrices.String())
// print minGasPrices
ctx.Logger().Info("Override minimum gas prices: " + minGasPrices.String())
}
}

if !minGasPrices.IsZero() {
Expand Down

0 comments on commit 8ee5338

Please sign in to comment.