You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
369 B
14 lines
369 B
8 years ago
|
// OP_0 {pubKeyHash}
|
||
|
|
||
6 years ago
|
import * as bscript from '../../script'
|
||
6 years ago
|
import { OPS } from '../../script'
|
||
8 years ago
|
|
||
6 years ago
|
export function check (script: Buffer | Array<number | Buffer>): boolean {
|
||
7 years ago
|
const buffer = bscript.compile(script)
|
||
8 years ago
|
|
||
|
return buffer.length === 22 &&
|
||
|
buffer[0] === OPS.OP_0 &&
|
||
|
buffer[1] === 0x14
|
||
|
}
|
||
8 years ago
|
check.toJSON = function () { return 'Witness pubKeyHash output' }
|