diff --git a/restricted/hasher/statetrie.go b/restricted/hasher/statetrie.go index 53e1428..f013e37 100644 --- a/restricted/hasher/statetrie.go +++ b/restricted/hasher/statetrie.go @@ -21,7 +21,6 @@ import ( "bytes" "encoding/gob" "errors" - "fmt" "io" "sync" @@ -213,9 +212,7 @@ func (st *StackTrie) TryUpdate(key, value []byte) error { } func (st *StackTrie) Update(key, value []byte) { - if err := st.TryUpdate(key, value); err != nil { - fmt.Println("Unhandled trie error in StackTrie.Update:", err) - } + st.TryUpdate(key, value) } func (st *StackTrie) Reset() {