mirror of
https://github.com/status-im/evmc.git
synced 2025-02-23 16:38:06 +00:00
Add EVMC_OUT_OF_MEMORY internal error status code
This commit is contained in:
parent
55329d8dfa
commit
9c4da27dfe
@ -303,7 +303,10 @@ enum evmc_status_code
|
||||
* For example, the Client tries running a code in the EVM 1.5. If the
|
||||
* code is not supported there, the execution falls back to the EVM 1.0.
|
||||
*/
|
||||
EVMC_REJECTED = -2
|
||||
EVMC_REJECTED = -2,
|
||||
|
||||
/** The VM failed to allocate the amount of memory needed for execution. */
|
||||
EVMC_OUT_OF_MEMORY = -3
|
||||
};
|
||||
|
||||
/* Forward declaration. */
|
||||
|
Loading…
x
Reference in New Issue
Block a user