forked from TrueCloudLab/neoneo-go
23 lines
511 B
Go
23 lines
511 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 struct {
|
|
Value []byte
|
|
IsConst bool
|
|
}
|
|
|
|
// EncodeBinary implements Serializable interface.
|
|
func (si *StorageItem) EncodeBinary(w *io.BinWriter) {
|
|
w.WriteVarBytes(si.Value)
|
|
w.WriteBool(si.IsConst)
|
|
}
|
|
|
|
// DecodeBinary implements Serializable interface.
|
|
func (si *StorageItem) DecodeBinary(r *io.BinReader) {
|
|
si.Value = r.ReadVarBytes()
|
|
si.IsConst = r.ReadBool()
|
|
}
|