aboutsummaryrefslogtreecommitdiffstats
path: root/trie.go
diff options
context:
space:
mode:
Diffstat (limited to 'trie.go')
-rw-r--r--trie.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/trie.go b/trie.go
index 83a3073ae..442cc08b8 100644
--- a/trie.go
+++ b/trie.go
@@ -48,7 +48,7 @@ type Trie struct {
}
func NewTrie(db Database, root string) *Trie {
- return &Trie{db: db, root: ""}
+ return &Trie{db: db, root: root}
}
/*