Skip to content

chore(fill): fix for geth transition tool #1276

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

Merged
merged 1 commit into from
Mar 17, 2025
Merged
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 @@ -26,6 +26,7 @@ Test fixtures for use by clients are available for each release on the [Github r
### πŸ“‹ Misc

- πŸ”€ Bump the version of `execution-specs` used by the framework to the package [`ethereum-execution==1.17.0rc6.dev1`](https://pypi.org/project/ethereum-execution/1.17.0rc6.dev1/); bump the version used for test fixture generation for forks < Prague to current `execution-specs` master, [fa847a0](https://github.com/ethereum/execution-specs/commit/fa847a0e48309debee8edc510ceddb2fd5db2f2e) ([#1310](https://github.com/ethereum/execution-spec-tests/pull/1310)).
- 🐞 Init `TransitionTool` in `GethTransitionTool` ([#1276](https://github.com/ethereum/execution-spec-tests/pull/1276)).

### πŸ§ͺ Test Cases

Expand Down
5 changes: 4 additions & 1 deletion src/ethereum_clis/clis/geth.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,10 @@ class GethTransitionTool(GethEvm, TransitionTool):

def __init__(self, *, binary: Path, trace: bool = False):
"""Initialize the GethTransitionTool class."""
super().__init__(binary=binary, trace=trace)
GethEvm.__init__(self, binary=binary, trace=trace)
TransitionTool.__init__(
self, exception_mapper=self.exception_mapper, binary=binary, trace=trace
)
help_command = [str(self.binary), str(self.subcommand), "--help"]
result = self._run_command(help_command)
self.help_string = result.stdout
Expand Down