File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -610,6 +610,15 @@ def test_account_merge(
610
610
],
611
611
}
612
612
],
613
+ "accessLists" : [
614
+ {
615
+ "address" : "0x0000000000000000000000000000000000001234" ,
616
+ "storageKeys" : [
617
+ "0x0000000000000000000000000000000000000000000000000000000000000000" ,
618
+ "0x0000000000000000000000000000000000000000000000000000000000000001" ,
619
+ ],
620
+ }
621
+ ],
613
622
"value" : "0x0" ,
614
623
"input" : "0x0100" ,
615
624
"gas" : "0x5208" ,
Original file line number Diff line number Diff line change @@ -655,6 +655,9 @@ def serialize_to_as_none(self, serializer):
655
655
default = serializer (self )
656
656
if default is not None and "to" not in default :
657
657
default ["to" ] = None
658
+ # TODO: Remove when https://github.com/ethereum/execution-specs/issues/1194 is fixed.
659
+ if default is not None and "accessList" in default :
660
+ default ["accessLists" ] = default ["accessList" ]
658
661
return default
659
662
660
663
You can’t perform that action at this time.
0 commit comments