Merge pull request #127 from ethereum/eip1283

SSTORE net gas metering support
This commit is contained in:
Paweł Bylica 2018-09-03 16:38:35 +02:00 committed by GitHub
commit 7a3f6bb57a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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