From b675e5bc26d0e9169f3526d079f7bf4c9dcee73a Mon Sep 17 00:00:00 2001 From: Gary Rong Date: Sun, 26 Apr 2026 23:19:30 +0800 Subject: [PATCH] core/state: fix --- core/state/statedb.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/core/state/statedb.go b/core/state/statedb.go index 9866195874..339211b95a 100644 --- a/core/state/statedb.go +++ b/core/state/statedb.go @@ -722,9 +722,6 @@ func (s *StateDB) Copy() *StateDB { if s.accessEvents != nil { state.accessEvents = s.accessEvents.Copy() } - if s.stateReadList != nil { - state.stateReadList = s.stateReadList.Copy() - } // Deep copy cached state objects. for addr, obj := range s.stateObjects { state.stateObjects[addr] = obj.deepCopy(state)