Skip to content

Commit 7a3f6bb

Browse files
authored
Merge pull request ipsilon#127 from ethereum/eip1283
SSTORE net gas metering support
2 parents 4d86207 + 073fa65 commit 7a3f6bb

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

include/evmc/evmc.h

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,12 @@ enum evmc_storage_status
450450
/**
451451
* A storage item has been deleted: X -> 0.
452452
*/
453-
EVMC_STORAGE_DELETED = 3
453+
EVMC_STORAGE_DELETED = 3,
454+
455+
/**
456+
* A storage item has been modified after being modified before: X -> Y -> Z.
457+
*/
458+
EVMC_STORAGE_MODIFIED_DIRTY = 4
454459
};
455460

456461

0 commit comments

Comments
 (0)