"Modified dirty" SSTORE result status, required for net gas metering of Constantinople

This commit is contained in:
Andrei Maiboroda 2018-09-03 13:05:25 +02:00
parent 4d86207a00
commit 073fa65a01
No known key found for this signature in database
GPG Key ID: 290E6134B4FA2A15
1 changed files with 6 additions and 1 deletions

View File

@ -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
};