From 08518d4c890f80a0c5f4f46c68e68afae5acb3bc Mon Sep 17 00:00:00 2001 From: StrathCole Date: Mon, 23 Sep 2024 10:06:27 +0200 Subject: [PATCH] - linting --- x/tax2gas/keeper/ante.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x/tax2gas/keeper/ante.go b/x/tax2gas/keeper/ante.go index 9ba2f508..cd56051a 100644 --- a/x/tax2gas/keeper/ante.go +++ b/x/tax2gas/keeper/ante.go @@ -46,8 +46,8 @@ func (d Tax2GasDecorator) AnteHandle(ctx sdk.Context, tx sdk.Tx, simulate bool, newCtx = ctx // default to old context for defer handling - //gas := gasTx.GetGas() - //newCtx = SetGasMeter(simulate, ctx, gas) + // gas := gasTx.GetGas() + // newCtx = SetGasMeter(simulate, ctx, gas) // Decorator will catch an OutOfGasPanic caused in the next antehandler // AnteHandlers must have their own defer/recover in order for the BaseApp