Skip to content

Commit

Permalink
P2SH tests: Avoid using bare multisig outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
luke-jr committed Mar 24, 2014
1 parent f50e1ee commit c5127b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/script_P2SH_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ BOOST_AUTO_TEST_CASE(set)
txTo[i].vin[0].prevout.n = i;
txTo[i].vin[0].prevout.hash = txFrom.GetHash();
txTo[i].vout[0].nValue = 1*CENT;
txTo[i].vout[0].scriptPubKey = inner[i];
txTo[i].vout[0].scriptPubKey = outer[i];
BOOST_CHECK_MESSAGE(IsMine(keystore, txFrom.vout[i].scriptPubKey), strprintf("IsMine %d", i));
}
for (int i = 0; i < 4; i++)
Expand Down

0 comments on commit c5127b7

Please sign in to comment.