mirror of https://github.com/status-im/evmc.git
Rename EVMC_STORAGE_MODIFIED_DIRTY to EVMC_STORAGE_MODIFIED_AGAIN
This commit is contained in:
parent
60723e231a
commit
1c69579da1
|
@ -41,7 +41,7 @@ type StorageStatus int
|
|||
const (
|
||||
StorageUnchanged StorageStatus = C.EVMC_STORAGE_UNCHANGED
|
||||
StorageModified StorageStatus = C.EVMC_STORAGE_MODIFIED
|
||||
StorageModifiedDirty StorageStatus = C.EVMC_STORAGE_MODIFIED_DIRTY
|
||||
StorageModifiedAgain StorageStatus = C.EVMC_STORAGE_MODIFIED_AGAIN
|
||||
StorageAdded StorageStatus = C.EVMC_STORAGE_ADDED
|
||||
StorageDeleted StorageStatus = C.EVMC_STORAGE_DELETED
|
||||
)
|
||||
|
|
|
@ -441,7 +441,7 @@ enum evmc_storage_status
|
|||
/**
|
||||
* A storage item has been modified after being modified before: X -> Y -> Z.
|
||||
*/
|
||||
EVMC_STORAGE_MODIFIED_DIRTY = 2,
|
||||
EVMC_STORAGE_MODIFIED_AGAIN = 2,
|
||||
|
||||
/**
|
||||
* A new storage item has been added: 0 -> X.
|
||||
|
|
Loading…
Reference in New Issue