mirror of https://github.com/status-im/evmc.git
Add REVERT opcode support
This commit is contained in:
parent
dcf9662874
commit
d3001b92fd
|
@ -53,6 +53,7 @@ enum evm_result_code {
|
||||||
EVM_BAD_JUMP_DESTINATION = 4,
|
EVM_BAD_JUMP_DESTINATION = 4,
|
||||||
EVM_STACK_OVERFLOW = 5,
|
EVM_STACK_OVERFLOW = 5,
|
||||||
EVM_STACK_UNDERFLOW = 6,
|
EVM_STACK_UNDERFLOW = 6,
|
||||||
|
EVM_REVERT = 7,
|
||||||
};
|
};
|
||||||
|
|
||||||
struct evm_result; ///< Forward declaration.
|
struct evm_result; ///< Forward declaration.
|
||||||
|
|
Loading…
Reference in New Issue