Skip to content

Commit

Permalink
Merge pull request #127 from ethereum/eip1283
Browse files Browse the repository at this point in the history
SSTORE net gas metering support
  • Loading branch information
chfast committed Sep 3, 2018
2 parents 4d86207 + 073fa65 commit 7a3f6bb
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion include/evmc/evmc.h
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,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 7a3f6bb

Please sign in to comment.