templates/pubkey: only canonical pubkeys to encode
This commit is contained in:
parent
3ba17a1479
commit
152eed57a0
1 changed files with 1 additions and 2 deletions
|
@ -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]
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue