From af72fce7f1e7d1fbb18be346276048119a7f60a3 Mon Sep 17 00:00:00 2001 From: jwasinger Date: Wed, 6 May 2026 06:18:05 -0400 Subject: [PATCH] eth/tracers: remove note about breaking change in IntermediateRoots --- eth/tracers/api.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/eth/tracers/api.go b/eth/tracers/api.go index 35fff88ddc..105fb55eba 100644 --- a/eth/tracers/api.go +++ b/eth/tracers/api.go @@ -551,10 +551,6 @@ func (api *API) IntermediateRoots(ctx context.Context, hash common.Hash, config roots = append(roots, statedb.IntermediateRoot(deleteEmptyObjects)) logs = append(logs, statedb.GetLogs(tx.Hash(), block.NumberU64(), block.Hash(), block.Time())...) } - // TODO(rjl) it's a behavioral change, need to discuss with team - // Run post-execution system calls - // core.PostExecution(ctx, chainConfig, block.Number(), block.Time(), logs, evm) - // roots = append(roots, statedb.IntermediateRoot(deleteEmptyObjects)) return roots, nil }