File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -72,6 +72,7 @@ class EvmoneExceptionMapper(ExceptionMapper):
72
72
TransactionException .INSUFFICIENT_MAX_FEE_PER_BLOB_GAS : (
73
73
"max blob fee per gas less than block base fee"
74
74
),
75
+ TransactionException .TYPE_4_TX_PRE_FORK : "transaction type not supported" ,
75
76
TransactionException .TYPE_3_TX_PRE_FORK : "transaction type not supported" ,
76
77
TransactionException .TYPE_3_TX_INVALID_BLOB_VERSIONED_HASH : "invalid blob hash version" ,
77
78
TransactionException .TYPE_3_TX_BLOB_COUNT_EXCEEDED : "blob gas limit exceeded" ,
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ class RethExceptionMapper(ExceptionMapper):
23
23
TransactionException .TYPE_3_TX_CONTRACT_CREATION : "unexpected length" ,
24
24
TransactionException .TYPE_3_TX_WITH_FULL_BLOBS : "unexpected list" ,
25
25
TransactionException .TYPE_3_TX_INVALID_BLOB_VERSIONED_HASH : "blob version not supported" ,
26
+ TransactionException .TYPE_3_TX_ZERO_BLOBS : "empty blobs" ,
26
27
TransactionException .TYPE_4_EMPTY_AUTHORIZATION_LIST : "empty authorization list" ,
27
28
TransactionException .TYPE_4_TX_CONTRACT_CREATION : "unexpected length" ,
28
29
TransactionException .TYPE_4_TX_PRE_FORK : (
@@ -48,7 +49,7 @@ class RethExceptionMapper(ExceptionMapper):
48
49
TransactionException .TYPE_3_TX_MAX_BLOB_GAS_ALLOWANCE_EXCEEDED : (
49
50
r"blob gas used \d+ exceeds maximum allowance \d+"
50
51
),
51
- TransactionException .TYPE_3_TX_ZERO_BLOBS : (
52
+ TransactionException .TYPE_3_TX_PRE_FORK : (
52
53
r"blob transactions present in pre-cancun payload|empty blobs"
53
54
),
54
55
TransactionException .GAS_ALLOWANCE_EXCEEDED : (
You can’t perform that action at this time.
0 commit comments