forked from TrueCloudLab/neoneo-go
65503aa9b4
1. Closes #840: added Nonce field to transaction.Transaction and removed Nonce field from transaction.MinerTx 2. Added following methods to different tx types: - NewMinerTx() - NewMinerTxWithNonce(...) - NewEnrollmentTx(...) - NewIssueTx() - NewPublishTx(...) - NewRegisterTx(...) - NewStateTx(...) in order to avoid code duplication when new transaction is created. 3. Commented out test cases where binary transaction/block are used. These test cases marked with `TODO NEO3.0: Update binary` and need to be updated. 4. Updated other tests 5. Added constant Nonce to GoveringTockenTx, UtilityTokenTx and genesis block to avoid data variability. Also marked with TODO.
37 lines
802 B
Go
37 lines
802 B
Go
package transaction
|
|
|
|
import (
|
|
"math/rand"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/io"
|
|
)
|
|
|
|
// StateTX represents a state transaction.
|
|
type StateTX struct {
|
|
Descriptors []*StateDescriptor
|
|
}
|
|
|
|
// NewStateTX creates Transaction of StateType type.
|
|
func NewStateTX(state *StateTX) *Transaction {
|
|
return &Transaction{
|
|
Type: StateType,
|
|
Version: 0,
|
|
Nonce: rand.Uint32(),
|
|
Data: state,
|
|
Attributes: []Attribute{},
|
|
Inputs: []Input{},
|
|
Outputs: []Output{},
|
|
Scripts: []Witness{},
|
|
Trimmed: false,
|
|
}
|
|
}
|
|
|
|
// DecodeBinary implements Serializable interface.
|
|
func (tx *StateTX) DecodeBinary(r *io.BinReader) {
|
|
r.ReadArray(&tx.Descriptors)
|
|
}
|
|
|
|
// EncodeBinary implements Serializable interface.
|
|
func (tx *StateTX) EncodeBinary(w *io.BinWriter) {
|
|
w.WriteArray(tx.Descriptors)
|
|
}
|