Skip to content

Commit 5cf1f24

Browse files
authored
chore(fill): fix prague filling with EELS (#969)
1 parent 8539345 commit 5cf1f24

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

eels_resolutions.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"Byzantium": {
1414
"same_as": "EELSMaster"
1515
},
16-
"Constantinople": {
16+
"ConstantinopleFix": {
1717
"same_as": "EELSMaster"
1818
},
1919
"Istanbul": {
@@ -36,7 +36,7 @@
3636
},
3737
"Prague": {
3838
"git_url": "https://github.com/ethereum/execution-specs.git",
39-
"branch": "prague",
40-
"commit": "2875a733d6b1e9e751e437c7894d3ebe6ff58ecc"
39+
"branch": "forks/prague",
40+
"commit": "1ea4a8d30d68bb819e77ff52eeb2095ae3c67f5f"
4141
}
4242
}

src/pytest_plugins/forks/forks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ def get_fork_option(config, option_name: str, parameter_name: str) -> Set[Fork]:
426426
if evm_bin is not None:
427427
t8n = TransitionTool.from_binary_path(binary_path=evm_bin)
428428
config.unsupported_forks = frozenset( # type: ignore
429-
filter(lambda fork: not t8n.is_fork_supported(fork), fork_set)
429+
fork for fork in fork_set if not t8n.is_fork_supported(fork)
430430
)
431431

432432

uv.lock

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)