txbuilder: re-add verification optimizations
This commit is contained in:
parent
4660b84c2d
commit
6c02e1692a
1 changed files with 7 additions and 1 deletions
|
@ -373,14 +373,20 @@ TransactionBuilder.prototype.sign = function (index, privKey, redeemScript, hash
|
|||
|
||||
// enforce signature order matches public keys
|
||||
if (input.scriptType === 'multisig' && input.redeemScript && input.signatures.length !== input.pubKeys.length) {
|
||||
// maintain a local copy of unmatched signatures
|
||||
var unmatched = input.signatures.slice()
|
||||
|
||||
input.signatures = input.pubKeys.map(function (pubKey) {
|
||||
var match
|
||||
|
||||
// check for any matching signatures
|
||||
input.signatures.some(function (signature) {
|
||||
unmatched.some(function (signature, i) {
|
||||
if (!pubKey.verify(signatureHash, signature)) return false
|
||||
match = signature
|
||||
|
||||
// remove matched signature from unmatched
|
||||
unmatched.splice(i, 1)
|
||||
|
||||
return true
|
||||
})
|
||||
|
||||
|
|
Loading…
Reference in a new issue