mirror of https://github.com/status-im/evmc.git
EVM-C: remove obsolete documentation from evm_execute_fn
This commit is contained in:
parent
af1cbd70ce
commit
ca967ed410
|
@ -388,7 +388,7 @@ typedef void (*evm_emit_log_fn)(struct evm_context* context,
|
|||
/// initialize all expected fields of the structure.
|
||||
/// @param context The pointer to the Host execution context.
|
||||
/// @see ::evm_context.
|
||||
/// @param msg Call parameters.
|
||||
/// @param msg Call parameters. @see ::evm_message.
|
||||
typedef void (*evm_call_fn)(struct evm_result* result,
|
||||
struct evm_context* context,
|
||||
const struct evm_message* msg);
|
||||
|
@ -474,16 +474,9 @@ enum evm_revision {
|
|||
/// @param context The pointer to the Host execution context to be passed
|
||||
/// to callback functions. @see ::evm_context.
|
||||
/// @param rev Requested EVM specification revision.
|
||||
/// @param code_hash A hash of the bytecode, usually Keccak. The EVM uses it
|
||||
/// as the code identifier. A EVM implementation is able to
|
||||
/// hash the code itself if it requires it, but the host
|
||||
/// application usually has the hash already.
|
||||
/// @param msg Call parameters. @see ::evm_message.
|
||||
/// @param code Reference to the bytecode to be executed.
|
||||
/// @param code_size The length of the bytecode.
|
||||
/// @param gas Gas for execution. Min 0, max 2^63-1.
|
||||
/// @param input Reference to the input data.
|
||||
/// @param input_size The size of the input data.
|
||||
/// @param value Call value.
|
||||
/// @return All execution results.
|
||||
typedef struct evm_result (*evm_execute_fn)(struct evm_instance* instance,
|
||||
struct evm_context* context,
|
||||
|
|
Loading…
Reference in New Issue