Add destruct list to evmc_result

This commit is contained in:
Alex Beregszaszi 2020-01-03 20:20:00 +01:00
parent f39cc6debc
commit c7c1ace73f
1 changed files with 8 additions and 0 deletions

View File

@ -315,6 +315,12 @@ enum evmc_status_code
EVMC_OUT_OF_MEMORY = -3
};
struct evmc_destruct_list
{
unsigned count;
evmc_address* list;
}
/* Forward declaration. */
struct evmc_result;
@ -413,6 +419,8 @@ struct evmc_result
*/
evmc_address create_address;
struct evmc_destruct_list destructed_addresses;
/**
* Reserved data that MAY be used by a evmc_result object creator.
*