Skip to content

Commit 65af601

Browse files
authored
Add txFrame id to FC.validateBlock log (#3443)
1 parent 1b1f07e commit 65af601

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

execution_chain/core/chain/forked_chain.nim

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,9 @@ proc validateBlock(c: ForkedChainRef,
396396
excessBlobGas: blk.header.excessBlobGas,
397397
parentBeaconBlockRoot: blk.header.parentBeaconBlockRoot,
398398
requestsHash: blk.header.requestsHash,
399-
)
399+
),
400+
parentTxFrame=cast[uint](parentFrame),
401+
txFrame=cast[uint](txFrame)
400402

401403
var receipts = c.processBlock(parent.header, txFrame, blk, blkHash, finalized).valueOr:
402404
txFrame.dispose()

0 commit comments

Comments
 (0)