From 1884477a4981845c2da9b62fe091c4c690660f81 Mon Sep 17 00:00:00 2001 From: Aayush Date: Thu, 2 Apr 2026 09:27:52 -0400 Subject: [PATCH] feat(giga): do not create receipts for invisible txs --- app/app.go | 1 + 1 file changed, 1 insertion(+) diff --git a/app/app.go b/app/app.go index b905550bf7..4f1069427f 100644 --- a/app/app.go +++ b/app/app.go @@ -1825,6 +1825,7 @@ func (app *App) executeEVMTxWithGigaExecutor(ctx sdk.Context, msg *evmtypes.MsgE // For successful txs, the nonce is bumped by the EVM during execution. if validation.bumpNonce { app.GigaEvmKeeper.SetNonce(ctx, sender, validation.currentNonce+1) + app.EvmKeeper.SetNonceBumped(ctx) } // V2 reports intrinsic gas as gasUsed even on validation failure (for metrics), // but no actual balance is deducted