Add EVMC_ARGUMENT_OUT_OF_RANGE error code

This commit is contained in:
Alex Beregszaszi 2018-08-19 20:48:37 +01:00
parent 88e44eaf09
commit 7254863933
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,