templates: fix nullData return value

This commit is contained in:
Daniel Cousens 2016-11-02 14:24:31 +11:00 committed by Daniel Cousens
parent 69d8e9ed9e
commit ce5babde83
2 changed files with 7 additions and 3 deletions

View file

@ -21,7 +21,7 @@ function encode (data) {
function decode (buffer) {
typeforce(check, buffer)
return buffer.slice(1)
return buffer.slice(2)
}
module.exports = {

View file

@ -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)
})
})
})
})