Skip to content

Commit

Permalink
Merge pull request #1014 from AntelopeIO/GH-425-wasm-exception-info
Browse files Browse the repository at this point in the history
Add details to wasm_execution_error
  • Loading branch information
heifner authored Nov 6, 2024
2 parents cf7c6e8 + 13d980c commit e006dde
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libraries/chain/webassembly/runtimes/eos-vm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -162,9 +162,9 @@ class eos_vm_instantiated_module : public wasm_instantiated_module_interface {
} catch(eosio::vm::timeout_exception&) {
context.trx_context.checktime();
} catch(eosio::vm::wasm_memory_exception& e) {
FC_THROW_EXCEPTION(wasm_execution_error, "access violation");
FC_THROW_EXCEPTION(wasm_execution_error, "access violation: ${d}", ("d", e.detail()));
} catch(eosio::vm::exception& e) {
FC_THROW_EXCEPTION(wasm_execution_error, "eos-vm system failure");
FC_THROW_EXCEPTION(wasm_execution_error, "eos-vm system failure: ${d}", ("d", e.detail()));
}
}

Expand Down

0 comments on commit e006dde

Please sign in to comment.