From 7331a924a02ffe8fb41bca2edb60a7e72cd3556b Mon Sep 17 00:00:00 2001 From: Ben {chmark} Adams Date: Mon, 9 Feb 2026 05:22:33 +0000 Subject: [PATCH 1/2] Nethermind: Add error message for GAS_USED_OVERFLOW exception --- .../src/execution_testing/client_clis/clis/nethermind.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/testing/src/execution_testing/client_clis/clis/nethermind.py b/packages/testing/src/execution_testing/client_clis/clis/nethermind.py index e687c77066..4228b572e5 100644 --- a/packages/testing/src/execution_testing/client_clis/clis/nethermind.py +++ b/packages/testing/src/execution_testing/client_clis/clis/nethermind.py @@ -396,6 +396,9 @@ class NethermindExceptionMapper(ExceptionMapper): BlockException.INVALID_STATE_ROOT: ( "InvalidStateRoot: State root in header does not match" ), + BlockException.GAS_USED_OVERFLOW: ( + "Block gas limit exceeded" + ), } mapping_regex = { TransactionException.INSUFFICIENT_ACCOUNT_FUNDS: ( From f6a171d3d588c4a8109d8e3e17281b49343ee1e5 Mon Sep 17 00:00:00 2001 From: danceratopz Date: Mon, 9 Feb 2026 10:31:13 +0100 Subject: [PATCH 2/2] chore(test-client-clis): fix-up lint --- .../src/execution_testing/client_clis/clis/nethermind.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/packages/testing/src/execution_testing/client_clis/clis/nethermind.py b/packages/testing/src/execution_testing/client_clis/clis/nethermind.py index 4228b572e5..b98760040b 100644 --- a/packages/testing/src/execution_testing/client_clis/clis/nethermind.py +++ b/packages/testing/src/execution_testing/client_clis/clis/nethermind.py @@ -396,9 +396,7 @@ class NethermindExceptionMapper(ExceptionMapper): BlockException.INVALID_STATE_ROOT: ( "InvalidStateRoot: State root in header does not match" ), - BlockException.GAS_USED_OVERFLOW: ( - "Block gas limit exceeded" - ), + BlockException.GAS_USED_OVERFLOW: ("Block gas limit exceeded"), } mapping_regex = { TransactionException.INSUFFICIENT_ACCOUNT_FUNDS: (