Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions trie/trie.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down Expand Up @@ -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
}()
Expand Down