Changed order of ControlSigs and PayerSig for consistency with other txs

This commit is contained in:
StephenButtolph 2020-04-06 17:51:23 -04:00
parent 7fa26e1240
commit 2d980c00b9
1 changed files with 3 additions and 3 deletions

View File

@ -52,13 +52,13 @@ type CreateChainTx struct {
// Set in SemanticVerify
PayerAddress ids.ShortID
// Signature of key whose account provides the transaction fee
PayerSig [crypto.SECP256K1RSigLen]byte `serialize:"true"`
// Signatures from Subnet's control keys
// Should not empty slice, not nil, if there are no control sigs
ControlSigs [][crypto.SECP256K1RSigLen]byte `serialize:"true"`
// Signature of key whose account provides the transaction fee
PayerSig [crypto.SECP256K1RSigLen]byte `serialize:"true"`
vm *VM
id ids.ID
bytes []byte