2016-11-02 02:30:37 +01:00
|
|
|
// OP_0 {scriptHash}
|
|
|
|
|
2018-06-25 08:25:12 +02:00
|
|
|
const bscript = require('../../script')
|
|
|
|
const OPS = require('bitcoin-ops')
|
2016-11-02 02:30:37 +01:00
|
|
|
|
|
|
|
function check (script) {
|
2018-06-25 08:37:45 +02:00
|
|
|
const buffer = bscript.compile(script)
|
2016-11-02 02:30:37 +01:00
|
|
|
|
|
|
|
return buffer.length === 34 &&
|
|
|
|
buffer[0] === OPS.OP_0 &&
|
|
|
|
buffer[1] === 0x20
|
|
|
|
}
|
2016-11-02 04:33:46 +01:00
|
|
|
check.toJSON = function () { return 'Witness scriptHash output' }
|
2016-11-02 02:30:37 +01:00
|
|
|
|
2018-07-03 15:00:00 +02:00
|
|
|
module.exports = { check }
|
2018-12-26 06:25:33 +01:00
|
|
|
export {}
|