Skip to content

Commit fb4348d

Browse files
authored
chore(cli): update max fee per blob gas limit for reth exception mapper (#2300)
1 parent c6b99ee commit fb4348d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/ethereum_clis/clis/reth.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ class RethExceptionMapper(ExceptionMapper):
1313
TransactionException.INSUFFICIENT_ACCOUNT_FUNDS: "lack of funds",
1414
TransactionException.INITCODE_SIZE_EXCEEDED: "create initcode size limit",
1515
TransactionException.INSUFFICIENT_MAX_FEE_PER_GAS: "gas price is less than basefee",
16-
TransactionException.INSUFFICIENT_MAX_FEE_PER_BLOB_GAS: (
17-
"blob gas price is greater than max fee per blob gas"
18-
),
1916
TransactionException.PRIORITY_GREATER_THAN_MAX_FEE_PER_GAS: (
2017
"priority fee is greater than max fee"
2118
),
@@ -41,6 +38,9 @@ class RethExceptionMapper(ExceptionMapper):
4138
}
4239
mapping_regex = {
4340
TransactionException.NONCE_MISMATCH_TOO_LOW: r"nonce \d+ too low, expected \d+",
41+
TransactionException.INSUFFICIENT_MAX_FEE_PER_BLOB_GAS: (
42+
r"blob gas price \(\d+\) is greater than max fee per blob gas \(\d+\)"
43+
),
4444
TransactionException.INTRINSIC_GAS_TOO_LOW: (
4545
r"call gas cost \(\d+\) exceeds the gas limit \(\d+\)"
4646
),

0 commit comments

Comments
 (0)