eth/tracers: remove note about breaking change in IntermediateRoots

This commit is contained in:
jwasinger 2026-05-06 06:18:05 -04:00 committed by GitHub
parent 99c4e241fa
commit af72fce7f1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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
}