test: minor.

This commit is contained in:
Christopher Jeffrey 2017-08-25 16:22:52 -07:00
parent 3957f83a59
commit 87b8ba4ec4
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD

View File

@ -624,8 +624,8 @@ describe('TX', function() {
const output = Script.fromMultisig(1, 2, [pub, pub]);
const input = new Script([
Opcode.fromOp(0),
Opcode.fromOp(0)
Opcode.fromInt(0),
Opcode.fromInt(0)
]);
const witness = new Witness();
@ -646,8 +646,8 @@ describe('TX', function() {
const output = Script.fromScripthash(redeem.hash160());
const input = new Script([
Opcode.fromOp(0),
Opcode.fromOp(0),
Opcode.fromInt(0),
Opcode.fromInt(0),
Opcode.fromData(redeem.toRaw())
]);