2016-12-14 15:15:01 +11:00
|
|
|
// {signature} {pubKey}
|
2016-11-02 12:30:37 +11:00
|
|
|
|
2018-06-25 16:25:12 +10:00
|
|
|
const bscript = require('../../script')
|
2016-11-02 12:30:37 +11:00
|
|
|
|
|
|
|
function check (script) {
|
2018-06-25 16:37:45 +10:00
|
|
|
const chunks = bscript.decompile(script)
|
2016-11-02 12:30:37 +11:00
|
|
|
|
|
|
|
return chunks.length === 2 &&
|
2018-06-05 17:17:40 +10:00
|
|
|
bscript.isCanonicalScriptSignature(chunks[0]) &&
|
2016-11-02 12:30:37 +11:00
|
|
|
bscript.isCanonicalPubKey(chunks[1])
|
|
|
|
}
|
2016-11-02 14:33:46 +11:00
|
|
|
check.toJSON = function () { return 'pubKeyHash input' }
|
2016-11-02 12:30:37 +11:00
|
|
|
|
2018-07-03 23:00:00 +10:00
|
|
|
module.exports = { check }
|
2018-12-26 14:25:33 +09:00
|
|
|
export {}
|