Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
aljo242 committed Nov 20, 2023
1 parent 265b9bd commit 7f50ce6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/feemarket/ante/fee.go
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ func DeductFees(bankKeeper BankKeeper, ctx sdk.Context, acc authtypes.AccountI,

// checkTxFees implements the logic for the fee market to check if a Tx has provided suffucient
// fees given the current state of the fee market. Returns an error if insufficient fees.
func checkTxFees(ctx sdk.Context, fees sdk.DecCoins, tx sdk.Tx) (feeCoins sdk.Coins, tip sdk.Coins, priority int64, err error) {
func checkTxFees(_ sdk.Context, fees sdk.DecCoins, tx sdk.Tx) (feeCoins sdk.Coins, tip sdk.Coins, priority int64, err error) {
feeTx, ok := tx.(sdk.FeeTx)
if !ok {
return nil, nil, 0, errorsmod.Wrap(sdkerrors.ErrTxDecode, "Tx must be a FeeTx")
Expand Down

0 comments on commit 7f50ce6

Please sign in to comment.