Browse Source

test: Fix warning about integer signedness in P2SH tests

metaverse
Wladimir J. van der Laan 10 years ago
parent
commit
3faf1f8294
No known key found for this signature in database GPG Key ID: 74810B012346C9A6
  1. 2
      src/test/script_P2SH_tests.cpp

2
src/test/script_P2SH_tests.cpp

@ -294,7 +294,7 @@ BOOST_AUTO_TEST_CASE(AreInputsStandard)
// vout[4] is max sigops:
CScript fifteenSigops; fifteenSigops << OP_1;
for (int i = 0; i < MAX_P2SH_SIGOPS; i++)
for (unsigned i = 0; i < MAX_P2SH_SIGOPS; i++)
fifteenSigops << key[i%3].GetPubKey();
fifteenSigops << OP_15 << OP_CHECKMULTISIG;
keystore.AddCScript(fifteenSigops);

Loading…
Cancel
Save