EVM-C: rename EVM_RESULT_* to EVM_*

This commit is contained in:
Alex Beregszaszi 2016-08-24 12:30:02 +01:00
parent f107589c59
commit baeade4d10
3 changed files with 9 additions and 9 deletions

View File

@ -80,7 +80,7 @@ int main(int argc, char *argv[]) {
sizeof(input), value); sizeof(input), value);
printf("Execution result:\n"); printf("Execution result:\n");
if (result.outcome == EVM_RESULT_EXCEPTION) { if (result.outcome == EVM_EXCEPTION) {
printf(" EVM exception\n"); printf(" EVM exception\n");
} }
printf(" Gas used: %ld\n", gas - result.gas_left); printf(" Gas used: %ld\n", gas - result.gas_left);

View File

@ -67,7 +67,7 @@ static struct evm_result evm_execute(struct evm_instance* instance,
// Execute code and refer to callbacks: instance->query_fn() // Execute code and refer to callbacks: instance->query_fn()
ret.outcome = EVM_RESULT_EXCEPTION; ret.outcome = EVM_EXCEPTION;
ret.gas_left = 0; ret.gas_left = 0;
return ret; return ret;

View File

@ -61,13 +61,13 @@ struct evm_hash256 {
/// The outcome of an execution. /// The outcome of an execution.
enum evm_result_outcome { enum evm_result_outcome {
EVM_RESULT_SUCCESS = 0, EVM_SUCCESS = 0,
EVM_RESULT_OUT_OF_GAS = 1, EVM_OUT_OF_GAS = 1,
EVM_RESULT_BAD_INSTRUCTION = 2, EVM_BAD_INSTRUCTION = 2,
EVM_RESULT_BAD_JUMP_DESTINATION = 3, EVM_BAD_JUMP_DESTINATION = 3,
EVM_RESULT_STACK_OVERFLOW = 4, EVM_STACK_OVERFLOW = 4,
EVM_RESULT_STACK_UNDERFLOW = 5, EVM_STACK_UNDERFLOW = 5,
EVM_RESULT_EXCEPTION = 6 EVM_EXCEPTION = 6
}; };
/// Complex struct representing execution result. /// Complex struct representing execution result.