mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-23 03:38:35 +00:00
55698d0426
It is now a slice, there is no need for additional indirection.
18 lines
415 B
Go
18 lines
415 B
Go
package state
|
|
|
|
import (
|
|
"github.com/nspcc-dev/neo-go/pkg/io"
|
|
)
|
|
|
|
// StorageItem is the value to be stored with read-only flag.
|
|
type StorageItem []byte
|
|
|
|
// EncodeBinary implements Serializable interface.
|
|
func (si *StorageItem) EncodeBinary(w *io.BinWriter) {
|
|
w.WriteVarBytes(*si)
|
|
}
|
|
|
|
// DecodeBinary implements Serializable interface.
|
|
func (si *StorageItem) DecodeBinary(r *io.BinReader) {
|
|
*si = r.ReadVarBytes()
|
|
}
|