Skip to content

Commit

Permalink
chore: more tweaks.
Browse files Browse the repository at this point in the history
  • Loading branch information
spencer-tb committed Sep 9, 2024
1 parent 6384d2f commit 77c96e7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Test fixtures for use by clients are available for each release on the [Github r

### 🔧 EVM Tools

- ✨ Use the `ethereum-specs` evm resolver tool to fill tests, which provides a speed increase of around 57x in comparison to geth ([#453](https://github.com/ethereum/execution-spec-tests/pull/453)).
- ✨ Use the `ethereum-specs` evm resolver tool to fill tests, which provides a speed increase of around 57x in comparison to geth ([#792](https://github.com/ethereum/execution-spec-tests/pull/792)).

### 📋 Misc

Expand Down
4 changes: 2 additions & 2 deletions src/evm_transition_tool/execution_specs.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class ExecutionSpecsTransitionTool(TransitionTool):
`ethereum-spec-evm-resolver` is installed by default for `execution-spec-tests`:
```console
uv run fill --evm-bin=ethereum-spec-evm
uv run fill --evm-bin=ethereum-spec-evm-resolver
```
To use a specific version of the `ethereum-spec-evm-resolver` tool, update it to the
Expand Down Expand Up @@ -56,7 +56,7 @@ def __init__(
f"{e}."
)
except Exception as e:
raise Exception(f"Unexpected exception calling ethereum-spec-evm: {e}.")
raise Exception(f"Unexpected exception calling ethereum-spec-evm-resolver: {e}.")
self.help_string = result.stdout

def start_server(self):
Expand Down
2 changes: 1 addition & 1 deletion src/evm_transition_tool/transition_tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ def _evaluate_server(
},
)

response = Session().post(self.server_url, json=post_data, timeout=120)
response = Session().post(self.server_url, json=post_data, timeout=20)
response.raise_for_status() # exception visible in pytest failure output
if response.status_code != 200:
raise Exception(
Expand Down

0 comments on commit 77c96e7

Please sign in to comment.