From e13c156d83f62d84fc244cc53b5fcbcb47fdeaa0 Mon Sep 17 00:00:00 2001 From: i-norden Date: Thu, 4 May 2023 09:18:04 -0500 Subject: [PATCH] TryUpdate => Update --- statediff/indexer/ipld/shared.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/statediff/indexer/ipld/shared.go b/statediff/indexer/ipld/shared.go index 89c0a285f..34aed949b 100644 --- a/statediff/indexer/ipld/shared.go +++ b/statediff/indexer/ipld/shared.go @@ -119,7 +119,7 @@ func (lt *localTrie) Add(idx int, rawdata []byte) error { if err != nil { panic(err) } - return lt.trie.TryUpdate(key, rawdata) + return lt.trie.Update(key, rawdata) } // rootHash returns the computed trie root.