Daniel Cousens
8 years ago
committed by
Daniel Cousens
9 changed files with 94 additions and 36 deletions
@ -1,3 +1,4 @@ |
|||
module.exports = { |
|||
input: require('./input'), |
|||
output: require('./output') |
|||
} |
|||
|
@ -0,0 +1,9 @@ |
|||
// {signature} {pubKey}
|
|||
|
|||
var pkh = require('../pubkeyhash/input') |
|||
|
|||
module.exports = { |
|||
check: pkh.check, |
|||
decodeStack: pkh.decodeStack, |
|||
encodeStack: pkh.encodeStack |
|||
} |
@ -1,3 +1,4 @@ |
|||
module.exports = { |
|||
input: require('./input'), |
|||
output: require('./output') |
|||
} |
|||
|
@ -0,0 +1,9 @@ |
|||
// {signature} {pubKey}
|
|||
|
|||
var p2sh = require('../scripthash/input') |
|||
|
|||
module.exports = { |
|||
check: p2sh.check, |
|||
decodeStack: p2sh.decodeStack, |
|||
encodeStack: p2sh.encodeStack |
|||
} |
Loading…
Reference in new issue