Skip to content

Commit

Permalink
test: minor.
Browse files Browse the repository at this point in the history
  • Loading branch information
chjj committed Aug 25, 2017
1 parent 3957f83 commit 87b8ba4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/tx-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand All @@ -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())
]);

Expand Down

0 comments on commit 87b8ba4

Please sign in to comment.