EVM-C: evm_prepare_code(): move code_hash parameter before code parameter

This commit is contained in:
Paweł Bylica 2016-08-28 16:00:04 +02:00
parent 0b9b01e05c
commit e70eae3e7a

View File

@ -371,9 +371,9 @@ typedef enum evm_code_status
/// JIT-like VMs.
typedef void (*evm_prepare_code_fn)(struct evm_instance* instance,
enum evm_mode mode,
struct evm_hash256 code_hash,
uint8_t const* code,
size_t code_size,
struct evm_hash256 code_hash);
size_t code_size);
/// VM interface.
///