Implement calls using evm_call() function form EVM-C API

This commit is contained in:
Paweł Bylica 2016-07-14 16:06:41 +02:00
parent 4198c0d503
commit c83060626f
1 changed files with 4 additions and 1 deletions

View File

@ -189,6 +189,8 @@ enum evm_call_kind {
/// Pointer to the callback function supporting EVM calls.
///
/// @param env Pointer to execution environment managed by the host
/// application.
/// @param kind The kind of call-like opcode requested.
/// @param gas The amount of gas for the call.
/// @param address The address of a contract to be called. Ignored in case
@ -204,6 +206,7 @@ enum evm_call_kind {
/// If negative - an exception occurred during the call/create.
/// There is no need to set 0 address in the output in this case.
typedef int64_t (*evm_call_fn)(
struct evm_env* env,
enum evm_call_kind kind,
int64_t gas,
struct evm_hash160 address,