Add REVERT opcode support

This commit is contained in:
Paweł Bylica 2017-04-03 18:00:26 +02:00
parent dcf9662874
commit d3001b92fd
1 changed files with 1 additions and 0 deletions

View File

@ -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.