templates: fix nullData return value
This commit is contained in:
parent
69d8e9ed9e
commit
ce5babde83
2 changed files with 7 additions and 3 deletions
|
@ -21,7 +21,7 @@ function encode (data) {
|
|||
function decode (buffer) {
|
||||
typeforce(check, buffer)
|
||||
|
||||
return buffer.slice(1)
|
||||
return buffer.slice(2)
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
|
|
|
@ -348,16 +348,20 @@ describe('script-templates', function () {
|
|||
})
|
||||
})
|
||||
|
||||
describe('nullData.output.encode', function () {
|
||||
describe('nullData.output', function () {
|
||||
fixtures.valid.forEach(function (f) {
|
||||
if (f.type !== 'nulldata') return
|
||||
|
||||
var data = new Buffer(f.data, 'hex')
|
||||
var scriptPubKey = bscript.nullData.output.encode(data)
|
||||
|
||||
it('returns ' + f.scriptPubKey, function () {
|
||||
it('encodes to ' + f.scriptPubKey, function () {
|
||||
assert.strictEqual(bscript.toASM(scriptPubKey), f.scriptPubKey)
|
||||
})
|
||||
|
||||
it('decodes to ' + f.data, function () {
|
||||
assert.deepEqual(bscript.nullData.output.decode(scriptPubKey), data)
|
||||
})
|
||||
})
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Add table
Reference in a new issue