File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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 ),
You can’t perform that action at this time.
0 commit comments