forked from TrueCloudLab/neoneo-go
d1a4e43c48
Further simplifies error handling.
39 lines
786 B
Go
39 lines
786 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) {
|
|
r.ReadLE(&s.Type)
|
|
|
|
s.Key = r.ReadBytes()
|
|
s.Value = r.ReadBytes()
|
|
s.Field = r.ReadString()
|
|
}
|
|
|
|
// EncodeBinary implements Serializable interface.
|
|
func (s *StateDescriptor) EncodeBinary(w *io.BinWriter) {
|
|
w.WriteLE(s.Type)
|
|
w.WriteBytes(s.Key)
|
|
w.WriteBytes(s.Value)
|
|
w.WriteString(s.Field)
|
|
}
|