File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -360,6 +360,9 @@ class NethermindExceptionMapper(ExceptionMapper):
360
360
BlockException .INVALID_GAS_USED_ABOVE_LIMIT : (
361
361
"ExceededGasLimit: Gas used exceeds gas limit."
362
362
),
363
+ TransactionException .INVALID_DEPOSIT_EVENT_LAYOUT : (
364
+ "DepositsInvalid: Invalid deposit event layout:"
365
+ ),
363
366
}
364
367
mapping_regex = {
365
368
TransactionException .INSUFFICIENT_ACCOUNT_FUNDS : (
@@ -382,9 +385,9 @@ class NethermindExceptionMapper(ExceptionMapper):
382
385
r"Invalid block hash 0x[0-9a-f]+ does not match calculated hash 0x[0-9a-f]+"
383
386
),
384
387
BlockException .SYSTEM_CONTRACT_EMPTY : (
385
- r"(Withdrawals|Consolidations)\: Contract is not deployed\."
388
+ r"(Withdrawals|Consolidations)Empty \: Contract is not deployed\."
386
389
),
387
390
BlockException .SYSTEM_CONTRACT_CALL_FAILED : (
388
- r"(Withdrawals|Consolidations)\: Contract execution failed\."
391
+ r"(Withdrawals|Consolidations)Failed \: Contract execution failed\."
389
392
),
390
393
}
You can’t perform that action at this time.
0 commit comments