diff --git a/trie/bintrie/trie.go b/trie/bintrie/trie.go index 0a8bd325f58..7453e166194 100644 --- a/trie/bintrie/trie.go +++ b/trie/bintrie/trie.go @@ -47,7 +47,6 @@ type BinaryTrie struct { // ToDot converts the binary trie to a DOT language representation. Useful for debugging. func (t *BinaryTrie) ToDot() string { - t.root.Hash() return ToDot(t.root) }