Skip to content
This repository was archived by the owner on Apr 8, 2026. It is now read-only.

Commit aa169dc

Browse files
authored
Merge pull request #62 from ethereum/outofrange
Add EVMC_ARGUMENT_OUT_OF_RANGE error code
2 parents 88e44ea + 7254863 commit aa169dc

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

include/evmc/evmc.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -275,6 +275,11 @@ enum evmc_status_code
275275
*/
276276
EVMC_CONTRACT_VALIDATION_FAILURE = 13,
277277

278+
/**
279+
* An argument to a state accessing method has a value outside of the
280+
* accepted range of values.
281+
*/
282+
EVMC_ARGUMENT_OUT_OF_RANGE = 14,
278283

279284
/** EVM implementation generic internal error. */
280285
EVMC_INTERNAL_ERROR = -1,

0 commit comments

Comments
 (0)