Skip to content

Commit

Permalink
fix object spread syntax in schnorr verify()
Browse files Browse the repository at this point in the history
  • Loading branch information
bsnowden3 committed Mar 19, 2020
1 parent a209e98 commit d5888f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/bitcore-lib-cash/lib/crypto/schnorr.js
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ Schnorr.prototype._findSignature = function(d, e) {
return Schnorr().set({
hashbuf: hashbuf,
endian: endian,
sig: {...sig, isSchnorr: true },
sig: sig,
pubkey: pubkey
}).verify().verified;
};
Expand Down

0 comments on commit d5888f1

Please sign in to comment.