test: Fix warning about integer signedness in P2SH tests
This commit is contained in:
parent
5c184cb850
commit
3faf1f8294
1 changed files with 1 additions and 1 deletions
|
@ -294,7 +294,7 @@ BOOST_AUTO_TEST_CASE(AreInputsStandard)
|
||||||
|
|
||||||
// vout[4] is max sigops:
|
// vout[4] is max sigops:
|
||||||
CScript fifteenSigops; fifteenSigops << OP_1;
|
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 << key[i%3].GetPubKey();
|
||||||
fifteenSigops << OP_15 << OP_CHECKMULTISIG;
|
fifteenSigops << OP_15 << OP_CHECKMULTISIG;
|
||||||
keystore.AddCScript(fifteenSigops);
|
keystore.AddCScript(fifteenSigops);
|
||||||
|
|
Loading…
Reference in a new issue