From 0dd1a0cb288b3c6ce948a37e44a0bbba905bee2c Mon Sep 17 00:00:00 2001 From: Guillaume Ballet <3272758+gballet@users.noreply.github.com> Date: Thu, 16 Oct 2025 15:50:36 +0200 Subject: [PATCH] prepare for rebase --- core/state/state_object.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/state/state_object.go b/core/state/state_object.go index f05f7b92db..cde5d11bba 100644 --- a/core/state/state_object.go +++ b/core/state/state_object.go @@ -498,7 +498,8 @@ func (s *stateObject) deepCopy(db *StateDB) *stateObject { switch s.trie.(type) { case *trie.VerkleTrie: - // In the Verkle case, the stateObject's trie shares the same reference as the StateDB's trie. + // Verkle uses only one tree, and the copy has already been + // made in mustCopyTrie. obj.trie = db.trie case *trie.StateTrie: obj.trie = mustCopyTrie(s.trie)