Merge pull request #15 from danlaine/development

sort transaction's control signatures in signAddNonDefaultSubnetValidatorTx
This commit is contained in:
Stephen Buttolph 2020-03-16 12:43:56 -04:00 committed by GitHub
commit 71c01fde1f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -770,6 +770,8 @@ func (service *Service) signAddNonDefaultSubnetValidatorTx(tx *addNonDefaultSubn
return nil, errors.New("no place for key to sign")
}
crypto.SortSECP2561RSigs(tx.ControlSigs)
return tx, nil
}