File tree Expand file tree Collapse file tree 1 file changed +6
-8
lines changed
Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -217,14 +217,6 @@ class BesuExceptionMapper(ExceptionMapper):
217217 TransactionException .TYPE_3_TX_ZERO_BLOBS : (
218218 "Failed to decode transactions from block parameter"
219219 ),
220- TransactionException .TYPE_3_TX_MAX_BLOB_GAS_ALLOWANCE_EXCEEDED : "Invalid Blob Count" ,
221- TransactionException .TYPE_3_TX_MAX_BLOB_GAS_ALLOWANCE_EXCEEDED : (
222- r"Blob transaction has too many blobs: \d+"
223- ),
224- TransactionException .TYPE_3_TX_BLOB_COUNT_EXCEEDED : "Invalid Blob Count" ,
225- TransactionException .TYPE_3_TX_BLOB_COUNT_EXCEEDED : (
226- r"Blob transaction has too many blobs: \d+"
227- ),
228220 TransactionException .TYPE_3_TX_PRE_FORK : (
229221 "Transaction type BLOB is invalid, accepted transaction types are"
230222 ),
@@ -297,4 +289,10 @@ class BesuExceptionMapper(ExceptionMapper):
297289 TransactionException .GAS_LIMIT_EXCEEDS_MAXIMUM : (
298290 r"transaction invalid Transaction gas limit must be at most \d+"
299291 ),
292+ TransactionException .TYPE_3_TX_BLOB_COUNT_EXCEEDED : (
293+ r"Blob transaction has too many blobs: \d+"
294+ ),
295+ TransactionException .TYPE_3_TX_MAX_BLOB_GAS_ALLOWANCE_EXCEEDED : (
296+ r"Invalid Blob Count: \d+"
297+ ),
300298 }
You can’t perform that action at this time.
0 commit comments