2019-11-28 19:06:09 +03:00
|
|
|
package state
|
2019-11-25 20:39:11 +03:00
|
|
|
|
|
|
|
// StorageItem is the value to be stored with read-only flag.
|
2021-03-05 17:06:54 +03:00
|
|
|
type StorageItem []byte
|
2021-09-24 17:22:45 +03:00
|
|
|
|
|
|
|
// StorageItemWithKey is a storage item with corresponding key.
|
|
|
|
type StorageItemWithKey struct {
|
|
|
|
Key []byte
|
|
|
|
Item StorageItem
|
|
|
|
}
|