Skip to content

Commit 1779001

Browse files
authored
chore(cli): besu blob tx exception mapper update (#2145)
1 parent e589892 commit 1779001

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/ethereum_clis/clis/besu.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -289,10 +289,10 @@ class BesuExceptionMapper(ExceptionMapper):
289289
TransactionException.GAS_LIMIT_EXCEEDS_MAXIMUM: (
290290
r"transaction invalid Transaction gas limit must be at most \d+"
291291
),
292-
TransactionException.TYPE_3_TX_BLOB_COUNT_EXCEEDED: (
293-
r"Blob transaction has too many blobs: \d+"
294-
),
295292
TransactionException.TYPE_3_TX_MAX_BLOB_GAS_ALLOWANCE_EXCEEDED: (
296-
r"Invalid Blob Count: \d+"
293+
r"Blob transaction 0x[0-9a-f]+ exceeds block blob gas limit: \d+ > \d+"
294+
),
295+
TransactionException.TYPE_3_TX_BLOB_COUNT_EXCEEDED: (
296+
r"Blob transaction has too many blobs: \d+|Invalid Blob Count: \d+"
297297
),
298298
}

0 commit comments

Comments
 (0)