mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-23 03:38:35 +00:00
72726d46d3
MemCachedStore.Seek now sorts results, so its callers may omit sorting.
10 lines
232 B
Go
10 lines
232 B
Go
package state
|
|
|
|
// StorageItem is the value to be stored with read-only flag.
|
|
type StorageItem []byte
|
|
|
|
// StorageItemWithKey is a storage item with corresponding key.
|
|
type StorageItemWithKey struct {
|
|
Key []byte
|
|
Item StorageItem
|
|
}
|