Merge pull request #1230 from sipa/warnings

Clean up warnings
This commit is contained in:
Gregory Maxwell
2012-05-09 04:07:24 -07:00
13 changed files with 24 additions and 26 deletions

View File

@@ -102,7 +102,7 @@ QList<TransactionRecord> TransactionRecord::decomposeTransaction(const CWallet *
//
int64 nTxFee = nDebit - wtx.GetValueOut();
for (int nOut = 0; nOut < wtx.vout.size(); nOut++)
for (unsigned int nOut = 0; nOut < wtx.vout.size(); nOut++)
{
const CTxOut& txout = wtx.vout[nOut];
TransactionRecord sub(hash, nTime);