aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGavin Andresen <gavinandresen@gmail.com>2012-07-05 13:25:52 -0400
committerGavin Andresen <gavinandresen@gmail.com>2012-07-05 13:26:27 -0400
commitdab9fa7f919807885bd693c4fa14ed740792c294 (patch)
treec629ba7da872cb8b3a24fccfaeb984220c79c7de
parentb47d2bc164bd21d4bec988fa8abfecc74d5ce5da (diff)
downloadbitcoin-dab9fa7f919807885bd693c4fa14ed740792c294.tar.xz
Use unsigned ints to fix signed/unsigned warnings
-rw-r--r--src/bitcoinrpc.cpp2
-rw-r--r--src/rpcrawtransaction.cpp6
-rw-r--r--src/script.cpp13
3 files changed, 11 insertions, 10 deletions
diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp
index adcf359c9f..e83e4da5df 100644
--- a/src/bitcoinrpc.cpp
+++ b/src/bitcoinrpc.cpp
@@ -72,7 +72,7 @@ Object JSONRPCError(int code, const string& message)
void RPCTypeCheck(const Array& params,
const list<Value_type>& typesExpected)
{
- int i = 0;
+ unsigned int i = 0;
BOOST_FOREACH(Value_type t, typesExpected)
{
if (params.size() <= i)
diff --git a/src/rpcrawtransaction.cpp b/src/rpcrawtransaction.cpp
index 0e8c806834..63c2dfe0ac 100644
--- a/src/rpcrawtransaction.cpp
+++ b/src/rpcrawtransaction.cpp
@@ -75,12 +75,12 @@ TxToJSON(const CTransaction& tx, const uint256 hashBlock, Object& entry)
}
entry.push_back(Pair("vin", vin));
Array vout;
- for (int i = 0; i < tx.vout.size(); i++)
+ for (unsigned int i = 0; i < tx.vout.size(); i++)
{
const CTxOut& txout = tx.vout[i];
Object out;
out.push_back(Pair("value", ValueFromAmount(txout.nValue)));
- out.push_back(Pair("n", i));
+ out.push_back(Pair("n", (boost::int64_t)i));
Object o;
ScriptPubKeyToJSON(txout.scriptPubKey, o);
out.push_back(Pair("scriptPubKey", o));
@@ -402,7 +402,7 @@ Value signrawtransaction(const Array& params, bool fHelp)
const CKeyStore& keystore = (fGivenKeys ? tempKeystore : *pwalletMain);
// Sign what we can:
- for (int i = 0; i < mergedTx.vin.size(); i++)
+ for (unsigned int i = 0; i < mergedTx.vin.size(); i++)
{
CTxIn& txin = mergedTx.vin[i];
if (mapPrevOut.count(txin.prevout) == 0)
diff --git a/src/script.cpp b/src/script.cpp
index 103fc0e422..c29648c2bc 100644
--- a/src/script.cpp
+++ b/src/script.cpp
@@ -1331,7 +1331,7 @@ bool SignN(const vector<valtype>& multisigdata, const CKeyStore& keystore, uint2
{
int nSigned = 0;
int nRequired = multisigdata.front()[0];
- for (int i = 1; i < multisigdata.size()-1 && nSigned < nRequired; i++)
+ for (unsigned int i = 1; i < multisigdata.size()-1 && nSigned < nRequired; i++)
{
const valtype& pubkey = multisigdata[i];
CKeyID keyID = CPubKey(pubkey).GetID();
@@ -1672,12 +1672,13 @@ static CScript CombineMultisig(CScript scriptPubKey, const CTransaction& txTo, u
}
// Build a map of pubkey -> signature by matching sigs to pubkeys:
- int nSigsRequired = vSolutions.front()[0];
- int nPubKeys = vSolutions.size()-2;
+ assert(vSolutions.size() > 1);
+ unsigned int nSigsRequired = vSolutions.front()[0];
+ unsigned int nPubKeys = vSolutions.size()-2;
map<valtype, valtype> sigs;
BOOST_FOREACH(const valtype& sig, allsigs)
{
- for (int i = 0; i < nPubKeys; i++)
+ for (unsigned int i = 0; i < nPubKeys; i++)
{
const valtype& pubkey = vSolutions[i+1];
if (sigs.count(pubkey))
@@ -1693,7 +1694,7 @@ static CScript CombineMultisig(CScript scriptPubKey, const CTransaction& txTo, u
// Now build a merged CScript:
unsigned int nSigsHave = 0;
CScript result; result << OP_0; // pop-one-too-many workaround
- for (int i = 0; i < nPubKeys && nSigsHave < nSigsRequired; i++)
+ for (unsigned int i = 0; i < nPubKeys && nSigsHave < nSigsRequired; i++)
{
if (sigs.count(vSolutions[i+1]))
{
@@ -1702,7 +1703,7 @@ static CScript CombineMultisig(CScript scriptPubKey, const CTransaction& txTo, u
}
}
// Fill any missing with OP_0:
- for (int i = nSigsHave; i < nSigsRequired; i++)
+ for (unsigned int i = nSigsHave; i < nSigsRequired; i++)
result << OP_0;
return result;