We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c184cb commit 3faf1f8Copy full SHA for 3faf1f8
src/test/script_P2SH_tests.cpp
@@ -294,7 +294,7 @@ BOOST_AUTO_TEST_CASE(AreInputsStandard)
294
295
// vout[4] is max sigops:
296
CScript fifteenSigops; fifteenSigops << OP_1;
297
- for (int i = 0; i < MAX_P2SH_SIGOPS; i++)
+ for (unsigned i = 0; i < MAX_P2SH_SIGOPS; i++)
298
fifteenSigops << key[i%3].GetPubKey();
299
fifteenSigops << OP_15 << OP_CHECKMULTISIG;
300
keystore.AddCScript(fifteenSigops);
0 commit comments