sort transaction's control signatures in signAddNonDefaultSubnetValidatorTx

This commit is contained in:
Dan Laine 2020-03-13 14:00:21 -04:00
parent 0698f2c74c
commit fb49eaa1cc
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
}