Skip to content

Commit f1c23d2

Browse files
committed
add reth exception
1 parent 2d55f07 commit f1c23d2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Diff for: src/ethereum_clis/clis/reth.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@ class RethExceptionMapper(ExceptionMapper):
3636
TransactionException.INTRINSIC_GAS_TOO_LOW: (
3737
r"(call gas cost|gas floor) \(\d+\) exceeds the gas limit \(\d+\)"
3838
),
39-
TransactionException.TYPE_3_TX_BLOB_COUNT_EXCEEDED: r"too many blobs, have \d+, max \d+",
39+
TransactionException.TYPE_3_TX_MAX_BLOB_GAS_ALLOWANCE_EXCEEDED: (
40+
r"blob gas used \d+ exceeds maximum allowance \d+"
41+
),
4042
BlockException.INCORRECT_BLOB_GAS_USED: (
4143
r"blob gas used mismatch|blob gas used \d+ is not a multiple of blob gas per blob"
4244
),

0 commit comments

Comments
 (0)