2018-03-21 16:11:04 +00:00
|
|
|
package transaction
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
|
|
|
|
|
|
|
"github.com/CityOfZion/neo-go/pkg/util"
|
|
|
|
)
|
|
|
|
|
|
|
|
// StateTX represents a state transaction.
|
|
|
|
type StateTX struct {
|
|
|
|
Descriptors []*StateDescriptor
|
|
|
|
}
|
|
|
|
|
|
|
|
// DecodeBinary implements the Payload interface.
|
|
|
|
func (tx *StateTX) DecodeBinary(r io.Reader) error {
|
2019-08-28 16:27:06 +00:00
|
|
|
br := util.BinReader{R: r}
|
|
|
|
lenDesc := br.ReadVarUint()
|
|
|
|
if br.Err != nil {
|
|
|
|
return br.Err
|
|
|
|
}
|
2018-03-21 16:11:04 +00:00
|
|
|
for i := 0; i < int(lenDesc); i++ {
|
|
|
|
tx.Descriptors[i] = &StateDescriptor{}
|
|
|
|
if err := tx.Descriptors[i].DecodeBinary(r); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// EncodeBinary implements the Payload interface.
|
|
|
|
func (tx *StateTX) EncodeBinary(w io.Writer) error {
|
|
|
|
return nil
|
|
|
|
}
|