From 87b8ba4ec4b70a060e5c1898903f7d3e677f384f Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Fri, 25 Aug 2017 16:22:52 -0700 Subject: [PATCH] test: minor. --- test/tx-test.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/tx-test.js b/test/tx-test.js index 1e27f85e..5de5b465 100644 --- a/test/tx-test.js +++ b/test/tx-test.js @@ -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()) ]);