Skip to content
Merged
Changes from 2 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
5 changes: 4 additions & 1 deletion trie/util_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,10 @@ func TestTrieTracer(t *testing.T) {

// Commit the changes and re-create with new root
root, nodes, _ := trie.Commit(false)
db.Update(NewWithNodeSet(nodes))
err := db.Update(NewWithNodeSet(nodes))
if err != nil {
t.Fatal("Unexpected error in db.Update:", err)
}
trie, _ = New(common.Hash{}, root, db)
trie.tracer = newTracer()

Expand Down