Merge pull request #243 from ethereum/rust-example-output

examples: return an output buffer in Rust
This commit is contained in:
Alex Beregszaszi 2019-04-24 12:23:55 +01:00 committed by GitHub
commit bde20b1f4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 5 deletions

View File

@ -10,10 +10,6 @@ extern "C" fn execute(
code: *const u8,
code_size: usize,
) -> ffi::evmc_result {
if msg == std::ptr::null() {
panic!()
}
let is_create = unsafe { (*msg).kind == ffi::evmc_call_kind::EVMC_CREATE };
if is_create {
@ -28,7 +24,7 @@ extern "C" fn execute(
evmc_vm::ExecutionResult::new(
ffi::evmc_status_code::EVMC_SUCCESS,
66,
None,
Some(vec![0xc0, 0xff, 0xee]),
ffi::evmc_address { bytes: [0u8; 20] },
)
.into()