Skip to content

Commit

Permalink
examples: use EVMC_REJECTED in example_precompiles_vm
Browse files Browse the repository at this point in the history
  • Loading branch information
axic committed Jun 3, 2019
1 parent 7f922c6 commit 1bee034
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/example_precompiles_vm/example_precompiles_vm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ static evmc_result execute_empty(const evmc_message* msg)
static evmc_result not_implemented()
{
auto result = evmc_result{};
result.status_code = EVMC_INTERNAL_ERROR;
result.status_code = EVMC_REJECTED;
return result;
}

Expand Down

0 comments on commit 1bee034

Please sign in to comment.