Commit 53634f1e authored by Péter Szilágyi's avatar Péter Szilágyi Committed by Felix Lange

trie: remove unused originalRoot field (#17862)

parent 31c4e3a1
......@@ -67,7 +67,6 @@ type LeafCallback func(leaf []byte, parent common.Hash) error
type Trie struct {
db *Database
root node
originalRoot common.Hash
// Cache generation values.
// cachegen increases by one with each commit operation.
......@@ -99,7 +98,6 @@ func New(root common.Hash, db *Database) (*Trie, error) {
}
trie := &Trie{
db: db,
originalRoot: root,
}
if root != (common.Hash{}) && root != emptyRoot {
rootnode, err := trie.resolveHash(root[:], nil)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment