From 590bc9f045baacca112ef56e4fe0769eed8b76d3 Mon Sep 17 00:00:00 2001 From: Alexey Osipov Date: Thu, 29 Jan 2026 15:22:13 +0300 Subject: [PATCH] fix(tests): update nethermind exceptions (#2098) --- .../src/execution_testing/client_clis/clis/nethermind.py | 6 +++--- 1 file changed, 3 insertions(+), 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 bb23b04aa0..e687c77066 100644 --- a/packages/testing/src/execution_testing/client_clis/clis/nethermind.py +++ b/packages/testing/src/execution_testing/client_clis/clis/nethermind.py @@ -320,10 +320,10 @@ class NethermindExceptionMapper(ExceptionMapper): "max initcode size exceeded" ), TransactionException.NONCE_MISMATCH_TOO_LOW: ( - "wrong transaction nonce" + "transaction nonce is too low" ), TransactionException.NONCE_MISMATCH_TOO_HIGH: ( - "wrong transaction nonce" + "transaction nonce is too high" ), TransactionException.INSUFFICIENT_MAX_FEE_PER_BLOB_GAS: ( "InsufficientMaxFeePerBlobGas: Not enough to cover blob gas fee" @@ -338,7 +338,7 @@ class NethermindExceptionMapper(ExceptionMapper): "InvalidTxType: Transaction type in Custom is not supported" ), TransactionException.TYPE_3_TX_ZERO_BLOBS: ( - "blob transaction missing blob hashes" + "blob transaction must have at least 1 blob" ), TransactionException.TYPE_3_TX_INVALID_BLOB_VERSIONED_HASH: ( "InvalidBlobVersionedHashVersion: Blob version not supported"