Skip to content

Commit

Permalink
chore(fill): fix prague filling with EELS (#969)
Browse files Browse the repository at this point in the history
  • Loading branch information
danceratopz authored Nov 27, 2024
1 parent 8539345 commit 5cf1f24
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions eels_resolutions.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"Byzantium": {
"same_as": "EELSMaster"
},
"Constantinople": {
"ConstantinopleFix": {
"same_as": "EELSMaster"
},
"Istanbul": {
Expand All @@ -36,7 +36,7 @@
},
"Prague": {
"git_url": "https://github.com/ethereum/execution-specs.git",
"branch": "prague",
"commit": "2875a733d6b1e9e751e437c7894d3ebe6ff58ecc"
"branch": "forks/prague",
"commit": "1ea4a8d30d68bb819e77ff52eeb2095ae3c67f5f"
}
}
2 changes: 1 addition & 1 deletion src/pytest_plugins/forks/forks.py
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ def get_fork_option(config, option_name: str, parameter_name: str) -> Set[Fork]:
if evm_bin is not None:
t8n = TransitionTool.from_binary_path(binary_path=evm_bin)
config.unsupported_forks = frozenset( # type: ignore
filter(lambda fork: not t8n.is_fork_supported(fork), fork_set)
fork for fork in fork_set if not t8n.is_fork_supported(fork)
)


Expand Down
3 changes: 2 additions & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5cf1f24

Please sign in to comment.