Skip to content

Commit e2d9b2f

Browse files
chore(clis): update geth exception mapper for TYPE_3_TX_BLOB_COUNT_EXCEEDED (#1958)
* Update geth.py * style(clis): fix lint * Update src/ethereum_clis/clis/geth.py --------- Co-authored-by: danceratopz <[email protected]>
1 parent 4939c1c commit e2d9b2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ethereum_clis/clis/geth.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class GethExceptionMapper(ExceptionMapper):
5252
TransactionException.TYPE_3_TX_PRE_FORK: ("transaction type not supported"),
5353
TransactionException.TYPE_3_TX_INVALID_BLOB_VERSIONED_HASH: "has invalid hash version",
5454
# This message is the same as TYPE_3_TX_MAX_BLOB_GAS_ALLOWANCE_EXCEEDED
55-
TransactionException.TYPE_3_TX_BLOB_COUNT_EXCEEDED: "exceed maximum allowance",
55+
TransactionException.TYPE_3_TX_BLOB_COUNT_EXCEEDED: "blob transaction has too many blobs",
5656
TransactionException.TYPE_3_TX_ZERO_BLOBS: "blob transaction missing blob hashes",
5757
TransactionException.TYPE_3_TX_WITH_FULL_BLOBS: (
5858
"unexpected blob sidecar in transaction at index"

0 commit comments

Comments
 (0)