File tree 3 files changed +10
-19
lines changed
3 files changed +10
-19
lines changed Original file line number Diff line number Diff line change 17
17
package state
18
18
19
19
import (
20
+ "maps"
21
+
20
22
"github.com/ethereum/go-ethereum/common"
21
23
)
22
24
@@ -57,16 +59,10 @@ func newAccessList() *accessList {
57
59
// Copy creates an independent copy of an accessList.
58
60
func (a * accessList ) Copy () * accessList {
59
61
cp := newAccessList ()
60
- for k , v := range a .addresses {
61
- cp .addresses [k ] = v
62
- }
62
+ cp .addresses = maps .Clone (a .addresses )
63
63
cp .slots = make ([]map [common.Hash ]struct {}, len (a .slots ))
64
64
for i , slotMap := range a .slots {
65
- newSlotmap := make (map [common.Hash ]struct {}, len (slotMap ))
66
- for k := range slotMap {
67
- newSlotmap [k ] = struct {}{}
68
- }
69
- cp .slots [i ] = newSlotmap
65
+ cp .slots [i ] = maps .Clone (slotMap )
70
66
}
71
67
return cp
72
68
}
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ import (
20
20
"bytes"
21
21
"fmt"
22
22
"io"
23
+ "maps"
23
24
"time"
24
25
25
26
"github.com/ethereum/go-ethereum/common"
@@ -47,11 +48,7 @@ func (s Storage) String() (str string) {
47
48
}
48
49
49
50
func (s Storage ) Copy () Storage {
50
- cpy := make (Storage , len (s ))
51
- for key , value := range s {
52
- cpy [key ] = value
53
- }
54
- return cpy
51
+ return maps .Clone (s )
55
52
}
56
53
57
54
// stateObject represents an Ethereum account which is being modified.
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ package state
19
19
20
20
import (
21
21
"fmt"
22
+ "maps"
22
23
"math/big"
23
24
"slices"
24
25
"sort"
@@ -750,9 +751,8 @@ func (s *StateDB) Copy() *StateDB {
750
751
state .stateObjectsDirty [addr ] = struct {}{}
751
752
}
752
753
// Deep copy the destruction markers.
753
- for addr , value := range s .stateObjectsDestruct {
754
- state .stateObjectsDestruct [addr ] = value
755
- }
754
+ state .stateObjectsDestruct = maps .Clone (s .stateObjectsDestruct )
755
+
756
756
// Deep copy the state changes made in the scope of block
757
757
// along with their original values.
758
758
state .accounts = copySet (s .accounts )
@@ -770,9 +770,7 @@ func (s *StateDB) Copy() *StateDB {
770
770
state .logs [hash ] = cpy
771
771
}
772
772
// Deep copy the preimages occurred in the scope of block
773
- for hash , preimage := range s .preimages {
774
- state .preimages [hash ] = preimage
775
- }
773
+ state .preimages = maps .Clone (s .preimages )
776
774
// Do we need to copy the access list and transient storage?
777
775
// In practice: No. At the start of a transaction, these two lists are empty.
778
776
// In practice, we only ever copy state _between_ transactions/blocks, never
You can’t perform that action at this time.
0 commit comments