templates/pubkey: only canonical pubkeys to encode

This commit is contained in:
Daniel Cousens 2017-08-22 11:09:31 +10:00 committed by Daniel Cousens
parent 3ba17a1479
commit 152eed57a0

View file

@ -1,7 +1,6 @@
// {signature}
var bscript = require('../../script')
var types = require('../../types')
var typeforce = require('typeforce')
function check (script) {
@ -13,7 +12,7 @@ function check (script) {
check.toJSON = function () { return 'pubKey input' }
function encodeStack (signature) {
typeforce(types.Buffer, signature)
typeforce(bscript.isCanonicalSignature, signature)
return [signature]
}