mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
Fixed tracing of the chain. Without this, the tracer will eventually run out of founds.
Fixes #19337
This commit is contained in:
parent
59e1953246
commit
5fa54e9e69
1 changed files with 1 additions and 1 deletions
|
|
@ -295,7 +295,7 @@ func (api *PrivateDebugAPI) traceChain(ctx context.Context, start, end *types.Bl
|
|||
break
|
||||
}
|
||||
// Finalize the state so any modifications are written to the trie
|
||||
root, err := statedb.Commit(true)
|
||||
root, err := statedb.Commit(api.eth.chainConfig.IsEIP158(block.Number()))
|
||||
if err != nil {
|
||||
failed = err
|
||||
break
|
||||
|
|
|
|||
Loading…
Reference in a new issue