Skip to content

Commit 590bc9f

Browse files
authored
fix(tests): update nethermind exceptions (#2098)
1 parent 7c8ec4f commit 590bc9f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • packages/testing/src/execution_testing/client_clis/clis

packages/testing/src/execution_testing/client_clis/clis/nethermind.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -320,10 +320,10 @@ class NethermindExceptionMapper(ExceptionMapper):
320320
"max initcode size exceeded"
321321
),
322322
TransactionException.NONCE_MISMATCH_TOO_LOW: (
323-
"wrong transaction nonce"
323+
"transaction nonce is too low"
324324
),
325325
TransactionException.NONCE_MISMATCH_TOO_HIGH: (
326-
"wrong transaction nonce"
326+
"transaction nonce is too high"
327327
),
328328
TransactionException.INSUFFICIENT_MAX_FEE_PER_BLOB_GAS: (
329329
"InsufficientMaxFeePerBlobGas: Not enough to cover blob gas fee"
@@ -338,7 +338,7 @@ class NethermindExceptionMapper(ExceptionMapper):
338338
"InvalidTxType: Transaction type in Custom is not supported"
339339
),
340340
TransactionException.TYPE_3_TX_ZERO_BLOBS: (
341-
"blob transaction missing blob hashes"
341+
"blob transaction must have at least 1 blob"
342342
),
343343
TransactionException.TYPE_3_TX_INVALID_BLOB_VERSIONED_HASH: (
344344
"InvalidBlobVersionedHashVersion: Blob version not supported"

0 commit comments

Comments
 (0)