core/state: handle BinaryTrie in mustCopyTrie

This commit is contained in:
VolodymyrBg 2026-02-08 01:41:52 +02:00 committed by GitHub
parent 777265620d
commit 1b66098634
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -299,6 +299,8 @@ func mustCopyTrie(t Trie) Trie {
switch t := t.(type) {
case *trie.StateTrie:
return t.Copy()
case *bintrie.BinaryTrie:
return t.Copy()
case *transitiontrie.TransitionTrie:
return t.Copy()
default: