Skip to content

chore(eels): update to use forks/prague #1454

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Test fixtures for use by clients are available for each release on the [Github r
- ✨ The `static_filler` plug-in now has support for static state tests (from [GeneralStateTests](https://github.com/ethereum/tests/tree/develop/src/GeneralStateTestsFiller)) ([#1362](https://github.com/ethereum/execution-spec-tests/pull/1362)).
- ✨ Introduce `pytest.mark.exception_test` to mark tests that contain an invalid transaction or block ([#1436](https://github.com/ethereum/execution-spec-tests/pull/1436)).
- 🐞 Fix `DeprecationWarning: Pickle, copy, and deepcopy support will be removed from itertools in Python 3.14.` by avoiding use `itertools` object in the spec `BaseTest` pydantic model ([#1414](https://github.com/ethereum/execution-spec-tests/pull/1414)).
- 🔀 Filling EELS branch updated to `forks/prague` ([#1454](https://github.com/ethereum/execution-spec-tests/pull/1454)).

#### `consume`

Expand Down
2 changes: 1 addition & 1 deletion eels_resolutions.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@
},
"Prague": {
"git_url": "https://github.com/ethereum/execution-specs.git",
"branch": "devnets/prague/6"
"branch": "forks/prague"
}
}
9 changes: 9 additions & 0 deletions src/ethereum_test_types/tests/test_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -610,6 +610,15 @@ def test_account_merge(
],
}
],
"accessLists": [
{
"address": "0x0000000000000000000000000000000000001234",
"storageKeys": [
"0x0000000000000000000000000000000000000000000000000000000000000000",
"0x0000000000000000000000000000000000000000000000000000000000000001",
],
}
],
"value": "0x0",
"input": "0x0100",
"gas": "0x5208",
Expand Down
3 changes: 3 additions & 0 deletions src/ethereum_test_types/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -655,6 +655,9 @@ def serialize_to_as_none(self, serializer):
default = serializer(self)
if default is not None and "to" not in default:
default["to"] = None
# TODO: Remove when https://github.com/ethereum/execution-specs/issues/1194 is fixed.
if default is not None and "accessList" in default:
default["accessLists"] = default["accessList"]
return default


Expand Down
Loading