From 639801dd05e9495fcf768d3934d3934b576785e1 Mon Sep 17 00:00:00 2001 From: GarmashAlex Date: Thu, 2 Oct 2025 13:24:53 +0300 Subject: [PATCH] trie/bintrie: remove redundant pre-Hash call in ToDot --- trie/bintrie/trie.go | 1 - 1 file changed, 1 deletion(-) 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) }