From caeefbc94b4f754cf17403bf496c1c83e0cb62f2 Mon Sep 17 00:00:00 2001 From: Fibonacci747 Date: Thu, 4 Dec 2025 22:43:50 +0100 Subject: [PATCH 1/3] fix reference --- src/ethereum_spec_tools/new_fork/builder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ethereum_spec_tools/new_fork/builder.py b/src/ethereum_spec_tools/new_fork/builder.py index c1607fce90..e02e6d48e2 100644 --- a/src/ethereum_spec_tools/new_fork/builder.py +++ b/src/ethereum_spec_tools/new_fork/builder.py @@ -329,7 +329,7 @@ def __init__( forks = Hardfork.discover() - # Find the `Hardfork` object named by 'template_fork`. + # Find the `Hardfork` object named by `template_fork`. before = None found = None for index, fork in enumerate(forks): From 20894c3e22a5f9e3b7621197a0e00b716f154466 Mon Sep 17 00:00:00 2001 From: Fibonacci747 Date: Thu, 4 Dec 2025 22:45:49 +0100 Subject: [PATCH 2/3] fix typo --- src/ethereum_spec_tools/whitelist/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ethereum_spec_tools/whitelist/__init__.py b/src/ethereum_spec_tools/whitelist/__init__.py index 1c76fe5c00..3b2bfd58fc 100644 --- a/src/ethereum_spec_tools/whitelist/__init__.py +++ b/src/ethereum_spec_tools/whitelist/__init__.py @@ -36,7 +36,7 @@ def find_project_root() -> Path: def main() -> int: """ `whitelist` accepts any number of strings, adds them to the whitelist, then - sorts the list and maintain visible sections for each leading character. + sorts the list and maintains visible sections for each leading character. Returns: - 0 on success From d40f53a577fc4ec9539f7b6905978c3b0d5c796e Mon Sep 17 00:00:00 2001 From: Fibonacci747 Date: Thu, 4 Dec 2025 22:51:55 +0100 Subject: [PATCH 3/3] fix typo --- src/ethereum_spec_tools/forks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ethereum_spec_tools/forks.py b/src/ethereum_spec_tools/forks.py index 9be8f2317c..c8dc7b8878 100644 --- a/src/ethereum_spec_tools/forks.py +++ b/src/ethereum_spec_tools/forks.py @@ -206,7 +206,7 @@ def block(self) -> Uint: @property def timestamp(self) -> U256: """ - Block number of the first block in this hard fork. + Timestamp of the first block in this hard fork. """ from ethereum.fork_criteria import ByTimestamp