From 287ced09f89d4a17d37550c0777943239e0865e1 Mon Sep 17 00:00:00 2001 From: Guillaume Ballet <3272758+gballet@users.noreply.github.com> Date: Tue, 17 Mar 2026 11:40:20 +0100 Subject: [PATCH] Update core/state/state_object.go --- core/state/state_object.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/state/state_object.go b/core/state/state_object.go index b7d56ce1ba..ec0c511737 100644 --- a/core/state/state_object.go +++ b/core/state/state_object.go @@ -478,7 +478,7 @@ func (s *stateObject) commit() (*accountUpdate, *trienode.NodeSet, error) { // The main account trie commit in stateDB.commit() already calls // CollectNodes on this trie, so calling Commit here again would // redundantly traverse and serialize the entire tree per dirty account. - if s.db.db.TrieDB().IsVerkle() { + if s.db.GetTrie().IsVerkle() { s.origin = s.data.Copy() return op, nil, nil }