trie: don't reset tracer at the end of Commit (#30024)
* trie: don't reset tracer at the end of Commit * Update trie.go --------- Co-authored-by: rjl493456442 <garyrong0905@gmail.com>
This commit is contained in:
parent
67a862db9d
commit
0e3a0a693c
@ -53,7 +53,6 @@ type Trie struct {
|
||||
reader *trieReader
|
||||
|
||||
// tracer is the tool to track the trie changes.
|
||||
// It will be reset after each commit operation.
|
||||
tracer *tracer
|
||||
}
|
||||
|
||||
@ -609,7 +608,6 @@ func (t *Trie) Hash() common.Hash {
|
||||
// Once the trie is committed, it's not usable anymore. A new trie must
|
||||
// be created with new root and updated trie database for following usage
|
||||
func (t *Trie) Commit(collectLeaf bool) (common.Hash, *trienode.NodeSet) {
|
||||
defer t.tracer.reset()
|
||||
defer func() {
|
||||
t.committed = true
|
||||
}()
|
||||
|
Loading…
Reference in New Issue
Block a user