EVM-C: highlight CREATE in evm_call_fn

This commit is contained in:
Alex Beregszaszi 2016-08-22 18:25:13 +01:00
parent 2b46c72c39
commit 787644293c
1 changed files with 3 additions and 3 deletions

View File

@ -215,13 +215,13 @@ enum evm_call_kind {
/// of CREATE.
/// @param value The value sent to the callee. The endowment in case of
/// CREATE.
/// @param input The call input data or the create init code.
/// @param input The call input data or the CREATE init code.
/// @param input_size The size of the input data.
/// @param output The reference to the memory where the call output is to
/// be copied. In case of create, the memory is guaranteed
/// be copied. In case of CREATE, the memory is guaranteed
/// to be at least 160 bytes to hold the address of the
/// created contract.
/// @param output_data The size of the output data. In case of create, expected
/// @param output_data The size of the output data. In case of CREATE, expected
/// value is 160.
/// @return If non-negative - the amount of gas left,
/// If negative - an exception occurred during the call/create.