Skip to content

Commit

Permalink
"Modified dirty" SSTORE result status, required for net gas metering …
Browse files Browse the repository at this point in the history
…of Constantinople
  • Loading branch information
gumb0 committed Sep 3, 2018
1 parent 224080e commit d51e578
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions include/evmc/evmc.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ extern "C" {
enum
{
/** The EVMC ABI version number of the interface declared in this file. */
EVMC_ABI_VERSION = 5
EVMC_ABI_VERSION = 6
};

/**
Expand Down Expand Up @@ -453,7 +453,12 @@ enum evmc_storage_status
/**
* A storage item has been deleted: X -> 0.
*/
EVMC_STORAGE_DELETED = 3
EVMC_STORAGE_DELETED = 3,

/**
* A storage item has been modified after being modified before: X -> Y -> Z.
*/
EVMC_STORAGE_MODIFIED_DIRTY = 4
};


Expand Down

0 comments on commit d51e578

Please sign in to comment.