Merge pull request #62 from ethereum/outofrange

Add EVMC_ARGUMENT_OUT_OF_RANGE error code
This commit is contained in:
Alex Beregszaszi 2018-08-19 21:16:36 +01:00 committed by GitHub
commit aa169dcccc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -275,6 +275,11 @@ enum evmc_status_code
*/
EVMC_CONTRACT_VALIDATION_FAILURE = 13,
/**
* An argument to a state accessing method has a value outside of the
* accepted range of values.
*/
EVMC_ARGUMENT_OUT_OF_RANGE = 14,
/** EVM implementation generic internal error. */
EVMC_INTERNAL_ERROR = -1,