8b3080b972
go vet is not happy about them: pkg/io/binaryReader.go:92:21: method ReadByte() byte should have signature ReadByte() (byte, error) pkg/io/binaryWriter.go:75:21: method WriteByte(u8 byte) should have signature WriteByte(byte) error
39 lines
819 B
Go
39 lines
819 B
Go
package transaction
|
|
|
|
import (
|
|
"github.com/CityOfZion/neo-go/pkg/io"
|
|
)
|
|
|
|
// DescStateType represents the type of StateDescriptor.
|
|
type DescStateType uint8
|
|
|
|
// Valid DescStateType constants.
|
|
const (
|
|
Account DescStateType = 0x40
|
|
Validator DescStateType = 0x48
|
|
)
|
|
|
|
// StateDescriptor ..
|
|
type StateDescriptor struct {
|
|
Type DescStateType
|
|
Key []byte
|
|
Value []byte
|
|
Field string
|
|
}
|
|
|
|
// DecodeBinary implements Serializable interface.
|
|
func (s *StateDescriptor) DecodeBinary(r *io.BinReader) {
|
|
s.Type = DescStateType(r.ReadB())
|
|
|
|
s.Key = r.ReadVarBytes()
|
|
s.Value = r.ReadVarBytes()
|
|
s.Field = r.ReadString()
|
|
}
|
|
|
|
// EncodeBinary implements Serializable interface.
|
|
func (s *StateDescriptor) EncodeBinary(w *io.BinWriter) {
|
|
w.WriteB(byte(s.Type))
|
|
w.WriteVarBytes(s.Key)
|
|
w.WriteVarBytes(s.Value)
|
|
w.WriteString(s.Field)
|
|
}
|