mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-23 13:16:42 +00:00
trie/bintrie: remove redundant pre-Hash call in ToDot
This commit is contained in:
parent
057667151b
commit
639801dd05
1 changed files with 0 additions and 1 deletions
|
|
@ -47,7 +47,6 @@ type BinaryTrie struct {
|
||||||
|
|
||||||
// ToDot converts the binary trie to a DOT language representation. Useful for debugging.
|
// ToDot converts the binary trie to a DOT language representation. Useful for debugging.
|
||||||
func (t *BinaryTrie) ToDot() string {
|
func (t *BinaryTrie) ToDot() string {
|
||||||
t.root.Hash()
|
|
||||||
return ToDot(t.root)
|
return ToDot(t.root)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue