From 77c96e77d9954e4517e755dcc9aab89e3ca3a089 Mon Sep 17 00:00:00 2001 From: spencer-tb Date: Mon, 9 Sep 2024 18:14:57 -0400 Subject: [PATCH] chore: more tweaks. --- docs/CHANGELOG.md | 2 +- src/evm_transition_tool/execution_specs.py | 4 ++-- src/evm_transition_tool/transition_tool.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 62cd77a911..a9c2c1e1ec 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -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 diff --git a/src/evm_transition_tool/execution_specs.py b/src/evm_transition_tool/execution_specs.py index b207e04966..7c9ae62bf7 100644 --- a/src/evm_transition_tool/execution_specs.py +++ b/src/evm_transition_tool/execution_specs.py @@ -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 @@ -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): diff --git a/src/evm_transition_tool/transition_tool.py b/src/evm_transition_tool/transition_tool.py index 123d337368..863c9d15dc 100644 --- a/src/evm_transition_tool/transition_tool.py +++ b/src/evm_transition_tool/transition_tool.py @@ -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(