EVM-C: include last_pc in evm_result

This commit is contained in:
Alex Beregszaszi 2016-08-24 10:45:01 +01:00
parent 0e129f5fed
commit 75f257a3a7
1 changed files with 5 additions and 0 deletions

View File

@ -76,6 +76,11 @@ struct evm_result {
/// @see outcome.
const char *outcome_reason;
/// The last program counter position
/// It can be optionally present when certain conditions are hit.
/// @see outcome.
int32_t last_pc;
/// Gas left after execution.
int64_t gas_left;