[Core Protocol] Canceled system transaction (126) ans CALL type STOP
#84
-
Issue DescriptionGm,
It breaks my whole EVM logic, this is what I get from {
"jsonrpc": "2.0",
"id": 1,
"result": {
"from": "0x0000000000000000000000000000000000000000",
"gas": "0x0",
"gasUsed": "0x5208",
"input": "0x",
"type": "STOP"
}
} I use EVM from Ethereumjs and we want to add support for optimism, that's why I'm struggling with it. It would be great to find out what is happening here, I tried to find it in the op gh code, but I was unsuccessful. Thanks! Additional InformationEdit: it happened only in these blocks:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
So 126 is a special deposit transaction type and there is special logic around these types of transactions when they fail. For more details on this you can check out the deposit specs. In one of these cases, it they were trying to deposit 100ETH but they didn't have that much to deposit. |
Beta Was this translation helpful? Give feedback.
-
Hey @kchojn, We hope your recent question was resolved to your satisfaction. Your feedback is invaluable and helps us improve our support services. Could you spare a moment to fill out a short feedback survey. Thank you for helping us improve our developer community. |
Beta Was this translation helpful? Give feedback.
So 126 is a special deposit transaction type and there is special logic around these types of transactions when they fail. For more details on this you can check out the deposit specs.
In one of these cases, it they were trying to deposit 100ETH but they didn't have that much to deposit.