mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-24 08:49:29 +00:00
core/state: fix
This commit is contained in:
parent
295d9cd5ab
commit
b675e5bc26
1 changed files with 0 additions and 3 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue