mirror of https://github.com/status-im/evmc.git
EVM-C: Rename log -> emit_log
Fixes https://github.com/ethereum/evmjit/issues/143.
This commit is contained in:
parent
2702f4567d
commit
6c65da3577
|
@ -373,7 +373,7 @@ typedef void (*evm_selfdestruct_fn)(struct evm_context* context,
|
|||
/// @param topics The pointer to the array of topics attached to the log.
|
||||
/// @param topics_count The number of the topics. Valid values are between
|
||||
/// 0 and 4 inclusively.
|
||||
typedef void (*evm_log_fn)(struct evm_context* context,
|
||||
typedef void (*evm_emit_log_fn)(struct evm_context* context,
|
||||
const struct evm_address* address,
|
||||
const uint8_t* data,
|
||||
size_t data_size,
|
||||
|
@ -408,7 +408,7 @@ struct evm_context_fn_table {
|
|||
evm_call_fn call;
|
||||
evm_get_tx_context_fn get_tx_context;
|
||||
evm_get_block_hash_fn get_block_hash;
|
||||
evm_log_fn log;
|
||||
evm_emit_log_fn emit_log;
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue