2ea0ef929526a2927b4ed9ecf057ca4cda37f725
[novacoin.git] / src / wallet.cpp
1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2012 The Bitcoin developers
3 // Distributed under the MIT/X11 software license, see the accompanying
4 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5
6 #include "txdb.h"
7 #include "wallet.h"
8 #include "walletdb.h"
9 #include "crypter.h"
10 #include "ui_interface.h"
11 #include "base58.h"
12 #include "kernel.h"
13 #include "coincontrol.h"
14 #include <boost/algorithm/string/replace.hpp>
15
16 using namespace std;
17 extern int nStakeMaxAge;
18
19 bool fCoinsDataActual;
20
21 //////////////////////////////////////////////////////////////////////////////
22 //
23 // mapWallet
24 //
25
26 struct CompareValueOnly
27 {
28     bool operator()(const pair<int64, pair<const CWalletTx*, unsigned int> >& t1,
29                     const pair<int64, pair<const CWalletTx*, unsigned int> >& t2) const
30     {
31         return t1.first < t2.first;
32     }
33 };
34
35 CPubKey CWallet::GenerateNewKey()
36 {
37     bool fCompressed = CanSupportFeature(FEATURE_COMPRPUBKEY); // default to compressed public keys if we want 0.6.0 wallets
38
39     RandAddSeedPerfmon();
40     CKey key;
41     key.MakeNewKey(fCompressed);
42
43     // Compressed public keys were introduced in version 0.6.0
44     if (fCompressed)
45         SetMinVersion(FEATURE_COMPRPUBKEY);
46
47     CPubKey pubkey = key.GetPubKey();
48
49     // Create new metadata
50     int64 nCreationTime = GetTime();
51     mapKeyMetadata[pubkey.GetID()] = CKeyMetadata(nCreationTime);
52     if (!nTimeFirstKey || nCreationTime < nTimeFirstKey)
53         nTimeFirstKey = nCreationTime;
54
55     if (!AddKey(key))
56         throw std::runtime_error("CWallet::GenerateNewKey() : AddKey failed");
57     return key.GetPubKey();
58 }
59
60 bool CWallet::AddKey(const CKey& key)
61 {
62     CPubKey pubkey = key.GetPubKey();
63
64     if (!CCryptoKeyStore::AddKey(key))
65         return false;
66     if (!fFileBacked)
67         return true;
68     if (!IsCrypted())
69         return CWalletDB(strWalletFile).WriteKey(pubkey, key.GetPrivKey(), mapKeyMetadata[pubkey.GetID()]);
70     return true;
71 }
72
73 bool CWallet::AddCryptedKey(const CPubKey &vchPubKey, const vector<unsigned char> &vchCryptedSecret)
74 {
75     if (!CCryptoKeyStore::AddCryptedKey(vchPubKey, vchCryptedSecret))
76         return false;
77     if (!fFileBacked)
78         return true;
79     {
80         LOCK(cs_wallet);
81         if (pwalletdbEncryption)
82             return pwalletdbEncryption->WriteCryptedKey(vchPubKey, vchCryptedSecret, mapKeyMetadata[vchPubKey.GetID()]);
83         else
84             return CWalletDB(strWalletFile).WriteCryptedKey(vchPubKey, vchCryptedSecret, mapKeyMetadata[vchPubKey.GetID()]);
85     }
86     return false;
87 }
88
89 bool CWallet::LoadKeyMetadata(const CPubKey &pubkey, const CKeyMetadata &meta)
90 {
91     if (meta.nCreateTime && (!nTimeFirstKey || meta.nCreateTime < nTimeFirstKey))
92         nTimeFirstKey = meta.nCreateTime;
93
94     mapKeyMetadata[pubkey.GetID()] = meta;
95     return true;
96 }
97
98 bool CWallet::AddCScript(const CScript& redeemScript)
99 {
100     if (!CCryptoKeyStore::AddCScript(redeemScript))
101         return false;
102     if (!fFileBacked)
103         return true;
104     return CWalletDB(strWalletFile).WriteCScript(Hash160(redeemScript), redeemScript);
105 }
106
107 bool CWallet::AddWatchOnly(const CScript &dest)
108 {
109     if (!CCryptoKeyStore::AddWatchOnly(dest))
110         return false;
111     nTimeFirstKey = 1; // No birthday information for watch-only keys.
112     if (!fFileBacked)
113         return true;
114     return CWalletDB(strWalletFile).WriteWatchOnly(dest);
115 }
116
117 bool CWallet::LoadWatchOnly(const CScript &dest)
118 {
119     return CCryptoKeyStore::AddWatchOnly(dest);
120 }
121
122 // ppcoin: optional setting to unlock wallet for block minting only;
123 //         serves to disable the trivial sendmoney when OS account compromised
124 bool fWalletUnlockMintOnly = false;
125
126 bool CWallet::Unlock(const SecureString& strWalletPassphrase)
127 {
128     if (!IsLocked())
129         return false;
130
131     CCrypter crypter;
132     CKeyingMaterial vMasterKey;
133
134     {
135         LOCK(cs_wallet);
136         BOOST_FOREACH(const MasterKeyMap::value_type& pMasterKey, mapMasterKeys)
137         {
138             if(!crypter.SetKeyFromPassphrase(strWalletPassphrase, pMasterKey.second.vchSalt, pMasterKey.second.nDeriveIterations, pMasterKey.second.nDerivationMethod))
139                 return false;
140             if (!crypter.Decrypt(pMasterKey.second.vchCryptedKey, vMasterKey))
141                 return false;
142             if (CCryptoKeyStore::Unlock(vMasterKey))
143                 return true;
144         }
145     }
146     return false;
147 }
148
149 bool CWallet::ChangeWalletPassphrase(const SecureString& strOldWalletPassphrase, const SecureString& strNewWalletPassphrase)
150 {
151     bool fWasLocked = IsLocked();
152
153     {
154         LOCK(cs_wallet);
155         Lock();
156
157         CCrypter crypter;
158         CKeyingMaterial vMasterKey;
159         BOOST_FOREACH(MasterKeyMap::value_type& pMasterKey, mapMasterKeys)
160         {
161             if(!crypter.SetKeyFromPassphrase(strOldWalletPassphrase, pMasterKey.second.vchSalt, pMasterKey.second.nDeriveIterations, pMasterKey.second.nDerivationMethod))
162                 return false;
163             if (!crypter.Decrypt(pMasterKey.second.vchCryptedKey, vMasterKey))
164                 return false;
165             if (CCryptoKeyStore::Unlock(vMasterKey))
166             {
167                 int64 nStartTime = GetTimeMillis();
168                 crypter.SetKeyFromPassphrase(strNewWalletPassphrase, pMasterKey.second.vchSalt, pMasterKey.second.nDeriveIterations, pMasterKey.second.nDerivationMethod);
169                 pMasterKey.second.nDeriveIterations = pMasterKey.second.nDeriveIterations * (100 / ((double)(GetTimeMillis() - nStartTime)));
170
171                 nStartTime = GetTimeMillis();
172                 crypter.SetKeyFromPassphrase(strNewWalletPassphrase, pMasterKey.second.vchSalt, pMasterKey.second.nDeriveIterations, pMasterKey.second.nDerivationMethod);
173                 pMasterKey.second.nDeriveIterations = (pMasterKey.second.nDeriveIterations + pMasterKey.second.nDeriveIterations * 100 / ((double)(GetTimeMillis() - nStartTime))) / 2;
174
175                 if (pMasterKey.second.nDeriveIterations < 25000)
176                     pMasterKey.second.nDeriveIterations = 25000;
177
178                 printf("Wallet passphrase changed to an nDeriveIterations of %i\n", pMasterKey.second.nDeriveIterations);
179
180                 if (!crypter.SetKeyFromPassphrase(strNewWalletPassphrase, pMasterKey.second.vchSalt, pMasterKey.second.nDeriveIterations, pMasterKey.second.nDerivationMethod))
181                     return false;
182                 if (!crypter.Encrypt(vMasterKey, pMasterKey.second.vchCryptedKey))
183                     return false;
184                 CWalletDB(strWalletFile).WriteMasterKey(pMasterKey.first, pMasterKey.second);
185                 if (fWasLocked)
186                     Lock();
187                 return true;
188             }
189         }
190     }
191
192     return false;
193 }
194
195 void CWallet::SetBestChain(const CBlockLocator& loc)
196 {
197     CWalletDB walletdb(strWalletFile);
198     walletdb.WriteBestBlock(loc);
199 }
200
201 // This class implements an addrIncoming entry that causes pre-0.4
202 // clients to crash on startup if reading a private-key-encrypted wallet.
203 class CCorruptAddress
204 {
205 public:
206     IMPLEMENT_SERIALIZE
207     (
208         if (nType & SER_DISK)
209             READWRITE(nVersion);
210     )
211 };
212
213 bool CWallet::SetMinVersion(enum WalletFeature nVersion, CWalletDB* pwalletdbIn, bool fExplicit)
214 {
215     if (nWalletVersion >= nVersion)
216         return true;
217
218     // when doing an explicit upgrade, if we pass the max version permitted, upgrade all the way
219     if (fExplicit && nVersion > nWalletMaxVersion)
220             nVersion = FEATURE_LATEST;
221
222     nWalletVersion = nVersion;
223
224     if (nVersion > nWalletMaxVersion)
225         nWalletMaxVersion = nVersion;
226
227     if (fFileBacked)
228     {
229         CWalletDB* pwalletdb = pwalletdbIn ? pwalletdbIn : new CWalletDB(strWalletFile);
230         if (nWalletVersion >= 40000)
231         {
232             // Versions prior to 0.4.0 did not support the "minversion" record.
233             // Use a CCorruptAddress to make them crash instead.
234             CCorruptAddress corruptAddress;
235             pwalletdb->WriteSetting("addrIncoming", corruptAddress);
236         }
237         if (nWalletVersion > 40000)
238             pwalletdb->WriteMinVersion(nWalletVersion);
239         if (!pwalletdbIn)
240             delete pwalletdb;
241     }
242
243     return true;
244 }
245
246 bool CWallet::SetMaxVersion(int nVersion)
247 {
248     // cannot downgrade below current version
249     if (nWalletVersion > nVersion)
250         return false;
251
252     nWalletMaxVersion = nVersion;
253
254     return true;
255 }
256
257 bool CWallet::EncryptWallet(const SecureString& strWalletPassphrase)
258 {
259     if (IsCrypted())
260         return false;
261
262     CKeyingMaterial vMasterKey;
263     RandAddSeedPerfmon();
264
265     vMasterKey.resize(WALLET_CRYPTO_KEY_SIZE);
266     RAND_bytes(&vMasterKey[0], WALLET_CRYPTO_KEY_SIZE);
267
268     CMasterKey kMasterKey(nDerivationMethodIndex);
269
270     RandAddSeedPerfmon();
271     kMasterKey.vchSalt.resize(WALLET_CRYPTO_SALT_SIZE);
272     RAND_bytes(&kMasterKey.vchSalt[0], WALLET_CRYPTO_SALT_SIZE);
273
274     CCrypter crypter;
275     int64 nStartTime = GetTimeMillis();
276     crypter.SetKeyFromPassphrase(strWalletPassphrase, kMasterKey.vchSalt, 25000, kMasterKey.nDerivationMethod);
277     kMasterKey.nDeriveIterations = 2500000 / ((double)(GetTimeMillis() - nStartTime));
278
279     nStartTime = GetTimeMillis();
280     crypter.SetKeyFromPassphrase(strWalletPassphrase, kMasterKey.vchSalt, kMasterKey.nDeriveIterations, kMasterKey.nDerivationMethod);
281     kMasterKey.nDeriveIterations = (kMasterKey.nDeriveIterations + kMasterKey.nDeriveIterations * 100 / ((double)(GetTimeMillis() - nStartTime))) / 2;
282
283     if (kMasterKey.nDeriveIterations < 25000)
284         kMasterKey.nDeriveIterations = 25000;
285
286     printf("Encrypting Wallet with an nDeriveIterations of %i\n", kMasterKey.nDeriveIterations);
287
288     if (!crypter.SetKeyFromPassphrase(strWalletPassphrase, kMasterKey.vchSalt, kMasterKey.nDeriveIterations, kMasterKey.nDerivationMethod))
289         return false;
290     if (!crypter.Encrypt(vMasterKey, kMasterKey.vchCryptedKey))
291         return false;
292
293     {
294         LOCK(cs_wallet);
295         mapMasterKeys[++nMasterKeyMaxID] = kMasterKey;
296         if (fFileBacked)
297         {
298             pwalletdbEncryption = new CWalletDB(strWalletFile);
299             if (!pwalletdbEncryption->TxnBegin())
300                 return false;
301             pwalletdbEncryption->WriteMasterKey(nMasterKeyMaxID, kMasterKey);
302         }
303
304         if (!EncryptKeys(vMasterKey))
305         {
306             if (fFileBacked)
307                 pwalletdbEncryption->TxnAbort();
308             exit(1); //We now probably have half of our keys encrypted in memory, and half not...die and let the user reload their unencrypted wallet.
309         }
310
311         // Encryption was introduced in version 0.4.0
312         SetMinVersion(FEATURE_WALLETCRYPT, pwalletdbEncryption, true);
313
314         if (fFileBacked)
315         {
316             if (!pwalletdbEncryption->TxnCommit())
317                 exit(1); //We now have keys encrypted in memory, but no on disk...die to avoid confusion and let the user reload their unencrypted wallet.
318
319             delete pwalletdbEncryption;
320             pwalletdbEncryption = NULL;
321         }
322
323         Lock();
324         Unlock(strWalletPassphrase);
325         NewKeyPool();
326         Lock();
327
328         // Need to completely rewrite the wallet file; if we don't, bdb might keep
329         // bits of the unencrypted private key in slack space in the database file.
330         CDB::Rewrite(strWalletFile);
331
332     }
333     NotifyStatusChanged(this);
334
335     return true;
336 }
337
338 int64 CWallet::IncOrderPosNext(CWalletDB *pwalletdb)
339 {
340     int64 nRet = nOrderPosNext++;
341     if (pwalletdb) {
342         pwalletdb->WriteOrderPosNext(nOrderPosNext);
343     } else {
344         CWalletDB(strWalletFile).WriteOrderPosNext(nOrderPosNext);
345     }
346     return nRet;
347 }
348
349 CWallet::TxItems CWallet::OrderedTxItems(std::list<CAccountingEntry>& acentries, std::string strAccount)
350 {
351     CWalletDB walletdb(strWalletFile);
352
353     // First: get all CWalletTx and CAccountingEntry into a sorted-by-order multimap.
354     TxItems txOrdered;
355
356     // Note: maintaining indices in the database of (account,time) --> txid and (account, time) --> acentry
357     // would make this much faster for applications that do this a lot.
358     for (map<uint256, CWalletTx>::iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
359     {
360         CWalletTx* wtx = &((*it).second);
361         txOrdered.insert(make_pair(wtx->nOrderPos, TxPair(wtx, (CAccountingEntry*)0)));
362     }
363     acentries.clear();
364     walletdb.ListAccountCreditDebit(strAccount, acentries);
365     BOOST_FOREACH(CAccountingEntry& entry, acentries)
366     {
367         txOrdered.insert(make_pair(entry.nOrderPos, TxPair((CWalletTx*)0, &entry)));
368     }
369
370     return txOrdered;
371 }
372
373 void CWallet::WalletUpdateSpent(const CTransaction &tx, bool fBlock)
374 {
375     // Anytime a signature is successfully verified, it's proof the outpoint is spent.
376     // Update the wallet spent flag if it doesn't know due to wallet.dat being
377     // restored from backup or the user making copies of wallet.dat.
378     {
379         LOCK(cs_wallet);
380         BOOST_FOREACH(const CTxIn& txin, tx.vin)
381         {
382             map<uint256, CWalletTx>::iterator mi = mapWallet.find(txin.prevout.hash);
383             if (mi != mapWallet.end())
384             {
385                 CWalletTx& wtx = (*mi).second;
386                 if (txin.prevout.n >= wtx.vout.size())
387                     printf("WalletUpdateSpent: bad wtx %s\n", wtx.GetHash().ToString().c_str());
388                 else if (!wtx.IsSpent(txin.prevout.n) && IsMine(wtx.vout[txin.prevout.n]))
389                 {
390                     printf("WalletUpdateSpent found spent coin %snvc %s\n", FormatMoney(wtx.GetCredit()).c_str(), wtx.GetHash().ToString().c_str());
391                     wtx.MarkSpent(txin.prevout.n);
392                     wtx.WriteToDisk();
393                     NotifyTransactionChanged(this, txin.prevout.hash, CT_UPDATED);
394                 }
395             }
396         }
397
398         if (fBlock)
399         {
400             uint256 hash = tx.GetHash();
401             map<uint256, CWalletTx>::iterator mi = mapWallet.find(hash);
402             CWalletTx& wtx = (*mi).second;
403
404             BOOST_FOREACH(const CTxOut& txout, tx.vout)
405             {
406                 if (IsMine(txout))
407                 {
408                     wtx.MarkUnspent(&txout - &tx.vout[0]);
409                     wtx.WriteToDisk();
410                     NotifyTransactionChanged(this, hash, CT_UPDATED);
411                 }
412             }
413         }
414
415     }
416 }
417
418 void CWallet::MarkDirty()
419 {
420     {
421         LOCK(cs_wallet);
422         BOOST_FOREACH(PAIRTYPE(const uint256, CWalletTx)& item, mapWallet)
423             item.second.MarkDirty();
424     }
425 }
426
427 bool CWallet::AddToWallet(const CWalletTx& wtxIn)
428 {
429     uint256 hash = wtxIn.GetHash();
430     {
431         LOCK(cs_wallet);
432         // Inserts only if not already there, returns tx inserted or tx found
433         pair<map<uint256, CWalletTx>::iterator, bool> ret = mapWallet.insert(make_pair(hash, wtxIn));
434         CWalletTx& wtx = (*ret.first).second;
435         wtx.BindWallet(this);
436         bool fInsertedNew = ret.second;
437         if (fInsertedNew)
438         {
439             wtx.nTimeReceived = GetAdjustedTime();
440             wtx.nOrderPos = IncOrderPosNext();
441
442             wtx.nTimeSmart = wtx.nTimeReceived;
443             if (wtxIn.hashBlock != 0)
444             {
445                 if (mapBlockIndex.count(wtxIn.hashBlock))
446                 {
447                     unsigned int latestNow = wtx.nTimeReceived;
448                     unsigned int latestEntry = 0;
449                     {
450                         // Tolerate times up to the last timestamp in the wallet not more than 5 minutes into the future
451                         int64 latestTolerated = latestNow + 300;
452                         std::list<CAccountingEntry> acentries;
453                         TxItems txOrdered = OrderedTxItems(acentries);
454                         for (TxItems::reverse_iterator it = txOrdered.rbegin(); it != txOrdered.rend(); ++it)
455                         {
456                             CWalletTx *const pwtx = (*it).second.first;
457                             if (pwtx == &wtx)
458                                 continue;
459                             CAccountingEntry *const pacentry = (*it).second.second;
460                             int64 nSmartTime;
461                             if (pwtx)
462                             {
463                                 nSmartTime = pwtx->nTimeSmart;
464                                 if (!nSmartTime)
465                                     nSmartTime = pwtx->nTimeReceived;
466                             }
467                             else
468                                 nSmartTime = pacentry->nTime;
469                             if (nSmartTime <= latestTolerated)
470                             {
471                                 latestEntry = nSmartTime;
472                                 if (nSmartTime > latestNow)
473                                     latestNow = nSmartTime;
474                                 break;
475                             }
476                         }
477                     }
478
479                     unsigned int& blocktime = mapBlockIndex[wtxIn.hashBlock]->nTime;
480                     wtx.nTimeSmart = std::max(latestEntry, std::min(blocktime, latestNow));
481                 }
482                 else
483                     printf("AddToWallet() : found %s in block %s not in index\n",
484                            wtxIn.GetHash().ToString().substr(0,10).c_str(),
485                            wtxIn.hashBlock.ToString().c_str());
486             }
487         }
488
489         bool fUpdated = false;
490         if (!fInsertedNew)
491         {
492             // Merge
493             if (wtxIn.hashBlock != 0 && wtxIn.hashBlock != wtx.hashBlock)
494             {
495                 wtx.hashBlock = wtxIn.hashBlock;
496                 fUpdated = true;
497             }
498             if (wtxIn.nIndex != -1 && (wtxIn.vMerkleBranch != wtx.vMerkleBranch || wtxIn.nIndex != wtx.nIndex))
499             {
500                 wtx.vMerkleBranch = wtxIn.vMerkleBranch;
501                 wtx.nIndex = wtxIn.nIndex;
502                 fUpdated = true;
503             }
504             if (wtxIn.fFromMe && wtxIn.fFromMe != wtx.fFromMe)
505             {
506                 wtx.fFromMe = wtxIn.fFromMe;
507                 fUpdated = true;
508             }
509             fUpdated |= wtx.UpdateSpent(wtxIn.vfSpent);
510         }
511
512         //// debug print
513         printf("AddToWallet %s  %s%s\n", wtxIn.GetHash().ToString().substr(0,10).c_str(), (fInsertedNew ? "new" : ""), (fUpdated ? "update" : ""));
514
515         // Write to disk
516         if (fInsertedNew || fUpdated)
517             if (!wtx.WriteToDisk())
518                 return false;
519 #ifndef QT_GUI
520         // If default receiving address gets used, replace it with a new one
521         CScript scriptDefaultKey;
522         scriptDefaultKey.SetDestination(vchDefaultKey.GetID());
523         BOOST_FOREACH(const CTxOut& txout, wtx.vout)
524         {
525             if (txout.scriptPubKey == scriptDefaultKey)
526             {
527                 CPubKey newDefaultKey;
528                 if (GetKeyFromPool(newDefaultKey, false))
529                 {
530                     SetDefaultKey(newDefaultKey);
531                     SetAddressBookName(vchDefaultKey.GetID(), "");
532                 }
533             }
534         }
535 #endif
536         // since AddToWallet is called directly for self-originating transactions, check for consumption of own coins
537         WalletUpdateSpent(wtx, (wtxIn.hashBlock != 0));
538
539         // Notify UI of new or updated transaction
540         NotifyTransactionChanged(this, hash, fInsertedNew ? CT_NEW : CT_UPDATED);
541
542         // notify an external script when a wallet transaction comes in or is updated
543         std::string strCmd = GetArg("-walletnotify", "");
544
545         if ( !strCmd.empty())
546         {
547             boost::replace_all(strCmd, "%s", wtxIn.GetHash().GetHex());
548             boost::thread t(runCommand, strCmd); // thread runs free
549         }
550
551     }
552     return true;
553 }
554
555 // Add a transaction to the wallet, or update it.
556 // pblock is optional, but should be provided if the transaction is known to be in a block.
557 // If fUpdate is true, existing transactions will be updated.
558 bool CWallet::AddToWalletIfInvolvingMe(const CTransaction& tx, const CBlock* pblock, bool fUpdate, bool fFindBlock)
559 {
560     uint256 hash = tx.GetHash();
561     {
562         LOCK(cs_wallet);
563         bool fExisted = mapWallet.count(hash);
564         if (fExisted && !fUpdate) return false;
565         if (fExisted || IsMine(tx) || IsFromMe(tx))
566         {
567             CWalletTx wtx(this,tx);
568             // Get merkle branch if transaction was found in a block
569             if (pblock)
570                 wtx.SetMerkleBranch(pblock);
571             return AddToWallet(wtx);
572         }
573         else
574             WalletUpdateSpent(tx);
575     }
576     return false;
577 }
578
579 bool CWallet::EraseFromWallet(uint256 hash)
580 {
581     if (!fFileBacked)
582         return false;
583     {
584         LOCK(cs_wallet);
585         if (mapWallet.erase(hash))
586             CWalletDB(strWalletFile).EraseTx(hash);
587     }
588     return true;
589 }
590
591
592 isminetype CWallet::IsMine(const CTxIn &txin) const
593 {
594     {
595         LOCK(cs_wallet);
596         map<uint256, CWalletTx>::const_iterator mi = mapWallet.find(txin.prevout.hash);
597         if (mi != mapWallet.end())
598         {
599             const CWalletTx& prev = (*mi).second;
600             if (txin.prevout.n < prev.vout.size())
601                 return IsMine(prev.vout[txin.prevout.n]);
602         }
603     }
604     return MINE_NO;
605 }
606
607 int64 CWallet::GetDebit(const CTxIn &txin, const isminefilter& filter) const
608 {
609     {
610         LOCK(cs_wallet);
611         map<uint256, CWalletTx>::const_iterator mi = mapWallet.find(txin.prevout.hash);
612         if (mi != mapWallet.end())
613         {
614             const CWalletTx& prev = (*mi).second;
615             if (txin.prevout.n < prev.vout.size())
616                 if (IsMine(prev.vout[txin.prevout.n]) & filter)
617                     return prev.vout[txin.prevout.n].nValue;
618         }
619     }
620     return 0;
621 }
622
623 bool CWallet::IsChange(const CTxOut& txout) const
624 {
625     // TODO: fix handling of 'change' outputs. The assumption is that any
626     // payment to a script that is ours, but isn't in the address book
627     // is change. That assumption is likely to break when we implement multisignature
628     // wallets that return change back into a multi-signature-protected address;
629     // a better way of identifying which outputs are 'the send' and which are
630     // 'the change' will need to be implemented (maybe extend CWalletTx to remember
631     // which output, if any, was change).
632     if (::IsMine(*this, txout.scriptPubKey))
633     {
634         CTxDestination address;
635         if (!ExtractDestination(txout.scriptPubKey, address))
636             return true;
637
638         LOCK(cs_wallet);
639         if (!mapAddressBook.count(address))
640             return true;
641     }
642     return false;
643 }
644
645 int64 CWalletTx::GetTxTime() const
646 {
647     int64 n = nTimeSmart;
648     return n ? n : nTimeReceived;
649 }
650
651 int CWalletTx::GetRequestCount() const
652 {
653     // Returns -1 if it wasn't being tracked
654     int nRequests = -1;
655     {
656         LOCK(pwallet->cs_wallet);
657         if (IsCoinBase() || IsCoinStake())
658         {
659             // Generated block
660             if (hashBlock != 0)
661             {
662                 map<uint256, int>::const_iterator mi = pwallet->mapRequestCount.find(hashBlock);
663                 if (mi != pwallet->mapRequestCount.end())
664                     nRequests = (*mi).second;
665             }
666         }
667         else
668         {
669             // Did anyone request this transaction?
670             map<uint256, int>::const_iterator mi = pwallet->mapRequestCount.find(GetHash());
671             if (mi != pwallet->mapRequestCount.end())
672             {
673                 nRequests = (*mi).second;
674
675                 // How about the block it's in?
676                 if (nRequests == 0 && hashBlock != 0)
677                 {
678                     map<uint256, int>::const_iterator mi = pwallet->mapRequestCount.find(hashBlock);
679                     if (mi != pwallet->mapRequestCount.end())
680                         nRequests = (*mi).second;
681                     else
682                         nRequests = 1; // If it's in someone else's block it must have got out
683                 }
684             }
685         }
686     }
687     return nRequests;
688 }
689
690 void CWalletTx::GetAmounts(int64& nGeneratedImmature, int64& nGeneratedMature, list<pair<CTxDestination, int64> >& listReceived,
691                            list<pair<CTxDestination, int64> >& listSent, int64& nFee, string& strSentAccount, const isminefilter& filter) const
692 {
693     nGeneratedImmature = nGeneratedMature = nFee = 0;
694     listReceived.clear();
695     listSent.clear();
696     strSentAccount = strFromAccount;
697
698     if (IsCoinBase() || IsCoinStake())
699     {
700         if (GetBlocksToMaturity() > 0)
701             nGeneratedImmature = pwallet->GetCredit(*this, filter);
702         else
703             nGeneratedMature = GetCredit(filter);
704         return;
705     }
706
707     // Compute fee:
708     int64 nDebit = GetDebit(filter);
709     if (nDebit > 0) // debit>0 means we signed/sent this transaction
710     {
711         int64 nValueOut = GetValueOut();
712         nFee = nDebit - nValueOut;
713     }
714
715     // Sent/received.
716     BOOST_FOREACH(const CTxOut& txout, vout)
717     {
718         isminetype fIsMine = pwallet->IsMine(txout);
719         // Only need to handle txouts if AT LEAST one of these is true:
720         //   1) they debit from us (sent)
721         //   2) the output is to us (received)
722         if (nDebit > 0)
723         {
724             // Don't report 'change' txouts
725             if (pwallet->IsChange(txout))
726                 continue;
727         }
728         else if (!(fIsMine & filter))
729             continue;
730
731         // In either case, we need to get the destination address
732         CTxDestination address;
733         if (!ExtractDestination(txout.scriptPubKey, address))
734         {
735             printf("CWalletTx::GetAmounts: Unknown transaction type found, txid %s\n",
736                    this->GetHash().ToString().c_str());
737             address = CNoDestination();
738         }
739
740         // If we are debited by the transaction, add the output as a "sent" entry
741         if (nDebit > 0)
742             listSent.push_back(make_pair(address, txout.nValue));
743
744         // If we are receiving the output, add it as a "received" entry
745         if (fIsMine & filter)
746             listReceived.push_back(make_pair(address, txout.nValue));
747     }
748
749 }
750
751 void CWalletTx::GetAccountAmounts(const string& strAccount, int64& nGenerated, int64& nReceived,
752                                   int64& nSent, int64& nFee, const isminefilter& filter) const
753 {
754     nGenerated = nReceived = nSent = nFee = 0;
755
756     int64 allGeneratedImmature, allGeneratedMature, allFee;
757     allGeneratedImmature = allGeneratedMature = allFee = 0;
758     string strSentAccount;
759     list<pair<CTxDestination, int64> > listReceived;
760     list<pair<CTxDestination, int64> > listSent;
761     GetAmounts(allGeneratedImmature, allGeneratedMature, listReceived, listSent, allFee, strSentAccount, filter);
762
763     if (strAccount == "")
764         nGenerated = allGeneratedMature;
765     if (strAccount == strSentAccount)
766     {
767         BOOST_FOREACH(const PAIRTYPE(CTxDestination,int64)& s, listSent)
768             nSent += s.second;
769         nFee = allFee;
770     }
771     {
772         LOCK(pwallet->cs_wallet);
773         BOOST_FOREACH(const PAIRTYPE(CTxDestination,int64)& r, listReceived)
774         {
775             if (pwallet->mapAddressBook.count(r.first))
776             {
777                 map<CTxDestination, string>::const_iterator mi = pwallet->mapAddressBook.find(r.first);
778                 if (mi != pwallet->mapAddressBook.end() && (*mi).second == strAccount)
779                     nReceived += r.second;
780             }
781             else if (strAccount.empty())
782             {
783                 nReceived += r.second;
784             }
785         }
786     }
787 }
788
789 void CWalletTx::AddSupportingTransactions(CTxDB& txdb)
790 {
791     vtxPrev.clear();
792
793     const int COPY_DEPTH = 3;
794     if (SetMerkleBranch() < COPY_DEPTH)
795     {
796         vector<uint256> vWorkQueue;
797         BOOST_FOREACH(const CTxIn& txin, vin)
798             vWorkQueue.push_back(txin.prevout.hash);
799
800         // This critsect is OK because txdb is already open
801         {
802             LOCK(pwallet->cs_wallet);
803             map<uint256, const CMerkleTx*> mapWalletPrev;
804             set<uint256> setAlreadyDone;
805             for (unsigned int i = 0; i < vWorkQueue.size(); i++)
806             {
807                 uint256 hash = vWorkQueue[i];
808                 if (setAlreadyDone.count(hash))
809                     continue;
810                 setAlreadyDone.insert(hash);
811
812                 CMerkleTx tx;
813                 map<uint256, CWalletTx>::const_iterator mi = pwallet->mapWallet.find(hash);
814                 if (mi != pwallet->mapWallet.end())
815                 {
816                     tx = (*mi).second;
817                     BOOST_FOREACH(const CMerkleTx& txWalletPrev, (*mi).second.vtxPrev)
818                         mapWalletPrev[txWalletPrev.GetHash()] = &txWalletPrev;
819                 }
820                 else if (mapWalletPrev.count(hash))
821                 {
822                     tx = *mapWalletPrev[hash];
823                 }
824                 else if (!fClient && txdb.ReadDiskTx(hash, tx))
825                 {
826                     ;
827                 }
828                 else
829                 {
830                     printf("ERROR: AddSupportingTransactions() : unsupported transaction\n");
831                     continue;
832                 }
833
834                 int nDepth = tx.SetMerkleBranch();
835                 vtxPrev.push_back(tx);
836
837                 if (nDepth < COPY_DEPTH)
838                 {
839                     BOOST_FOREACH(const CTxIn& txin, tx.vin)
840                         vWorkQueue.push_back(txin.prevout.hash);
841                 }
842             }
843         }
844     }
845
846     reverse(vtxPrev.begin(), vtxPrev.end());
847 }
848
849 bool CWalletTx::WriteToDisk()
850 {
851     return CWalletDB(pwallet->strWalletFile).WriteTx(GetHash(), *this);
852 }
853
854 // Scan the block chain (starting in pindexStart) for transactions
855 // from or to us. If fUpdate is true, found transactions that already
856 // exist in the wallet will be updated.
857 int CWallet::ScanForWalletTransactions(CBlockIndex* pindexStart, bool fUpdate)
858 {
859     int ret = 0;
860
861     CBlockIndex* pindex = pindexStart;
862     {
863         LOCK(cs_wallet);
864         while (pindex)
865         {
866             CBlock block;
867             block.ReadFromDisk(pindex, true);
868             BOOST_FOREACH(CTransaction& tx, block.vtx)
869             {
870                 if (AddToWalletIfInvolvingMe(tx, &block, fUpdate))
871                     ret++;
872             }
873             pindex = pindex->pnext;
874         }
875     }
876     return ret;
877 }
878
879 int CWallet::ScanForWalletTransaction(const uint256& hashTx)
880 {
881     CTransaction tx;
882     tx.ReadFromDisk(COutPoint(hashTx, 0));
883     if (AddToWalletIfInvolvingMe(tx, NULL, true, true))
884         return 1;
885     return 0;
886 }
887
888 void CWallet::ReacceptWalletTransactions()
889 {
890     CTxDB txdb("r");
891     bool fRepeat = true;
892     while (fRepeat)
893     {
894         LOCK(cs_wallet);
895         fRepeat = false;
896         vector<CDiskTxPos> vMissingTx;
897         BOOST_FOREACH(PAIRTYPE(const uint256, CWalletTx)& item, mapWallet)
898         {
899             CWalletTx& wtx = item.second;
900             if ((wtx.IsCoinBase() && wtx.IsSpent(0)) || (wtx.IsCoinStake() && wtx.IsSpent(1)))
901                 continue;
902
903             CTxIndex txindex;
904             bool fUpdated = false;
905             if (txdb.ReadTxIndex(wtx.GetHash(), txindex))
906             {
907                 // Update fSpent if a tx got spent somewhere else by a copy of wallet.dat
908                 if (txindex.vSpent.size() != wtx.vout.size())
909                 {
910                     printf("ERROR: ReacceptWalletTransactions() : txindex.vSpent.size() %"PRIszu" != wtx.vout.size() %"PRIszu"\n", txindex.vSpent.size(), wtx.vout.size());
911                     continue;
912                 }
913                 for (unsigned int i = 0; i < txindex.vSpent.size(); i++)
914                 {
915                     if (wtx.IsSpent(i))
916                         continue;
917                     if (!txindex.vSpent[i].IsNull() && IsMine(wtx.vout[i]))
918                     {
919                         wtx.MarkSpent(i);
920                         fUpdated = true;
921                         vMissingTx.push_back(txindex.vSpent[i]);
922                     }
923                 }
924                 if (fUpdated)
925                 {
926                     printf("ReacceptWalletTransactions found spent coin %snvc %s\n", FormatMoney(wtx.GetCredit()).c_str(), wtx.GetHash().ToString().c_str());
927                     wtx.MarkDirty();
928                     wtx.WriteToDisk();
929                 }
930             }
931             else
932             {
933                 // Re-accept any txes of ours that aren't already in a block
934                 if (!(wtx.IsCoinBase() || wtx.IsCoinStake()))
935                     wtx.AcceptWalletTransaction(txdb, false);
936             }
937         }
938         if (!vMissingTx.empty())
939         {
940             // TODO: optimize this to scan just part of the block chain?
941             if (ScanForWalletTransactions(pindexGenesisBlock))
942                 fRepeat = true;  // Found missing transactions: re-do re-accept.
943         }
944     }
945 }
946
947 void CWalletTx::RelayWalletTransaction(CTxDB& txdb)
948 {
949     BOOST_FOREACH(const CMerkleTx& tx, vtxPrev)
950     {
951         if (!(tx.IsCoinBase() || tx.IsCoinStake()))
952         {
953             uint256 hash = tx.GetHash();
954             if (!txdb.ContainsTx(hash))
955                 RelayTransaction((CTransaction)tx, hash);
956         }
957     }
958     if (!(IsCoinBase() || IsCoinStake()))
959     {
960         uint256 hash = GetHash();
961         if (!txdb.ContainsTx(hash))
962         {
963             printf("Relaying wtx %s\n", hash.ToString().substr(0,10).c_str());
964             RelayTransaction((CTransaction)*this, hash);
965         }
966     }
967 }
968
969 void CWalletTx::RelayWalletTransaction()
970 {
971    CTxDB txdb("r");
972    RelayWalletTransaction(txdb);
973 }
974
975 void CWallet::ResendWalletTransactions()
976 {
977     // Do this infrequently and randomly to avoid giving away
978     // that these are our transactions.
979     static int64 nNextTime;
980     if (GetTime() < nNextTime)
981         return;
982     bool fFirst = (nNextTime == 0);
983     nNextTime = GetTime() + GetRand(30 * 60);
984     if (fFirst)
985         return;
986
987     // Only do it if there's been a new block since last time
988     static int64 nLastTime;
989     if (nTimeBestReceived < nLastTime)
990         return;
991     nLastTime = GetTime();
992
993     // Rebroadcast any of our txes that aren't in a block yet
994     printf("ResendWalletTransactions()\n");
995     CTxDB txdb("r");
996     {
997         LOCK(cs_wallet);
998         // Sort them in chronological order
999         multimap<unsigned int, CWalletTx*> mapSorted;
1000         BOOST_FOREACH(PAIRTYPE(const uint256, CWalletTx)& item, mapWallet)
1001         {
1002             CWalletTx& wtx = item.second;
1003             // Don't rebroadcast until it's had plenty of time that
1004             // it should have gotten in already by now.
1005             if (nTimeBestReceived - (int64)wtx.nTimeReceived > 5 * 60)
1006                 mapSorted.insert(make_pair(wtx.nTimeReceived, &wtx));
1007         }
1008         BOOST_FOREACH(PAIRTYPE(const unsigned int, CWalletTx*)& item, mapSorted)
1009         {
1010             CWalletTx& wtx = *item.second;
1011             if (wtx.CheckTransaction())
1012                 wtx.RelayWalletTransaction(txdb);
1013             else
1014                 printf("ResendWalletTransactions() : CheckTransaction failed for transaction %s\n", wtx.GetHash().ToString().c_str());
1015         }
1016     }
1017 }
1018
1019
1020
1021
1022
1023
1024 //////////////////////////////////////////////////////////////////////////////
1025 //
1026 // Actions
1027 //
1028
1029
1030 int64 CWallet::GetBalance() const
1031 {
1032     int64 nTotal = 0;
1033     {
1034         LOCK(cs_wallet);
1035         for (map<uint256, CWalletTx>::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
1036         {
1037             const CWalletTx* pcoin = &(*it).second;
1038             if (pcoin->IsTrusted())
1039                 nTotal += pcoin->GetAvailableCredit();
1040         }
1041     }
1042
1043     return nTotal;
1044 }
1045
1046 int64 CWallet::GetWatchOnlyBalance() const
1047 {
1048     int64 nTotal = 0;
1049     {
1050         LOCK(cs_wallet);
1051         for (map<uint256, CWalletTx>::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
1052         {
1053             const CWalletTx* pcoin = &(*it).second;
1054             if (pcoin->IsTrusted())
1055                 nTotal += pcoin->GetAvailableWatchCredit();
1056         }
1057     }
1058
1059     return nTotal;
1060 }
1061
1062 int64 CWallet::GetUnconfirmedBalance() const
1063 {
1064     int64 nTotal = 0;
1065     {
1066         LOCK(cs_wallet);
1067         for (map<uint256, CWalletTx>::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
1068         {
1069             const CWalletTx* pcoin = &(*it).second;
1070             if (!pcoin->IsFinal() || !pcoin->IsTrusted())
1071                 nTotal += pcoin->GetAvailableCredit();
1072         }
1073     }
1074     return nTotal;
1075 }
1076
1077 int64 CWallet::GetUnconfirmedWatchOnlyBalance() const
1078 {
1079     int64 nTotal = 0;
1080     {
1081         LOCK(cs_wallet);
1082         for (map<uint256, CWalletTx>::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
1083         {
1084             const CWalletTx* pcoin = &(*it).second;
1085             if (!pcoin->IsFinal() || !pcoin->IsTrusted())
1086                 nTotal += pcoin->GetAvailableWatchCredit();
1087         }
1088     }
1089     return nTotal;
1090 }
1091
1092 int64 CWallet::GetImmatureBalance() const
1093 {
1094     int64 nTotal = 0;
1095     {
1096         LOCK(cs_wallet);
1097         for (map<uint256, CWalletTx>::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
1098         {
1099             const CWalletTx* pcoin = &(*it).second;
1100             nTotal += pcoin->GetImmatureCredit();
1101         }
1102     }
1103     return nTotal;
1104 }
1105
1106 int64 CWallet::GetImmatureWatchOnlyBalance() const
1107 {
1108     int64 nTotal = 0;
1109     {
1110         LOCK(cs_wallet);
1111         for (map<uint256, CWalletTx>::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
1112         {
1113             const CWalletTx* pcoin = &(*it).second;
1114             nTotal += pcoin->GetImmatureWatchOnlyCredit();
1115         }
1116     }
1117     return nTotal;
1118 }
1119
1120 // populate vCoins with vector of spendable COutputs
1121 void CWallet::AvailableCoins(vector<COutput>& vCoins, bool fOnlyConfirmed, const CCoinControl *coinControl) const
1122 {
1123     vCoins.clear();
1124
1125     {
1126         LOCK(cs_wallet);
1127         for (map<uint256, CWalletTx>::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
1128         {
1129             const CWalletTx* pcoin = &(*it).second;
1130
1131             if (!pcoin->IsFinal())
1132                 continue;
1133
1134             if (fOnlyConfirmed && !pcoin->IsTrusted())
1135                 continue;
1136
1137             if (pcoin->IsCoinBase() && pcoin->GetBlocksToMaturity() > 0)
1138                 continue;
1139
1140             if(pcoin->IsCoinStake() && pcoin->GetBlocksToMaturity() > 0)
1141                 continue;
1142
1143             for (unsigned int i = 0; i < pcoin->vout.size(); i++) {
1144                 isminetype mine = IsMine(pcoin->vout[i]);
1145                 if (!(pcoin->IsSpent(i)) && mine != MINE_NO && 
1146                     pcoin->vout[i].nValue >= nMinimumInputValue &&
1147                     (!coinControl || !coinControl->HasSelected() || coinControl->IsSelected((*it).first, i)))
1148                 {
1149                     vCoins.push_back(COutput(pcoin, i, pcoin->GetDepthInMainChain(), mine == MINE_SPENDABLE));
1150                 }
1151             }
1152         }
1153     }
1154 }
1155
1156 void CWallet::AvailableCoinsMinConf(vector<COutput>& vCoins, int nConf, int64 nMinValue, int64 nMaxValue) const
1157 {
1158     vCoins.clear();
1159
1160     {
1161         LOCK(cs_wallet);
1162         for (map<uint256, CWalletTx>::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
1163         {
1164             const CWalletTx* pcoin = &(*it).second;
1165
1166             if (!pcoin->IsFinal())
1167                 continue;
1168
1169             if(pcoin->GetDepthInMainChain() < nConf)
1170                 continue;
1171
1172             for (unsigned int i = 0; i < pcoin->vout.size(); i++) {
1173                 isminetype mine = IsMine(pcoin->vout[i]);
1174
1175                 // ignore coin if it was already spent or we don't own it
1176                 if (pcoin->IsSpent(i) || mine == MINE_NO)
1177                     continue;
1178
1179                 // if coin value is between required limits then add new item to vector
1180                 if (pcoin->vout[i].nValue >= nMinValue && pcoin->vout[i].nValue < nMaxValue)
1181                     vCoins.push_back(COutput(pcoin, i, pcoin->GetDepthInMainChain(), mine == MINE_SPENDABLE));
1182             }
1183         }
1184     }
1185 }
1186
1187 static void ApproximateBestSubset(vector<pair<int64, pair<const CWalletTx*,unsigned int> > >vValue, int64 nTotalLower, int64 nTargetValue,
1188                                   vector<char>& vfBest, int64& nBest, int iterations = 1000)
1189 {
1190     vector<char> vfIncluded;
1191
1192     vfBest.assign(vValue.size(), true);
1193     nBest = nTotalLower;
1194
1195     for (int nRep = 0; nRep < iterations && nBest != nTargetValue; nRep++)
1196     {
1197         vfIncluded.assign(vValue.size(), false);
1198         int64 nTotal = 0;
1199         bool fReachedTarget = false;
1200         for (int nPass = 0; nPass < 2 && !fReachedTarget; nPass++)
1201         {
1202             for (unsigned int i = 0; i < vValue.size(); i++)
1203             {
1204                 if (nPass == 0 ? rand() % 2 : !vfIncluded[i])
1205                 {
1206                     nTotal += vValue[i].first;
1207                     vfIncluded[i] = true;
1208                     if (nTotal >= nTargetValue)
1209                     {
1210                         fReachedTarget = true;
1211                         if (nTotal < nBest)
1212                         {
1213                             nBest = nTotal;
1214                             vfBest = vfIncluded;
1215                         }
1216                         nTotal -= vValue[i].first;
1217                         vfIncluded[i] = false;
1218                     }
1219                 }
1220             }
1221         }
1222     }
1223 }
1224
1225 int64 CWallet::GetStake() const
1226 {
1227     int64 nTotal = 0;
1228     LOCK(cs_wallet);
1229     for (map<uint256, CWalletTx>::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
1230     {
1231         const CWalletTx* pcoin = &(*it).second;
1232         if (pcoin->IsCoinStake() && pcoin->GetBlocksToMaturity() > 0 && pcoin->GetDepthInMainChain() > 0)
1233             nTotal += CWallet::GetCredit(*pcoin, MINE_ALL);
1234     }
1235     return nTotal;
1236 }
1237
1238 int64 CWallet::GetWatchOnlyStake() const
1239 {
1240     int64 nTotal = 0;
1241     LOCK(cs_wallet);
1242     for (map<uint256, CWalletTx>::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
1243     {
1244         const CWalletTx* pcoin = &(*it).second;
1245         if (pcoin->IsCoinStake() && pcoin->GetBlocksToMaturity() > 0 && pcoin->GetDepthInMainChain() > 0)
1246             nTotal += CWallet::GetCredit(*pcoin, MINE_WATCH_ONLY);
1247     }
1248     return nTotal;
1249 }
1250
1251 int64 CWallet::GetNewMint() const
1252 {
1253     int64 nTotal = 0;
1254     LOCK(cs_wallet);
1255     for (map<uint256, CWalletTx>::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
1256     {
1257         const CWalletTx* pcoin = &(*it).second;
1258         if (pcoin->IsCoinBase() && pcoin->GetBlocksToMaturity() > 0 && pcoin->GetDepthInMainChain() > 0)
1259             nTotal += CWallet::GetCredit(*pcoin, MINE_ALL);
1260     }
1261     return nTotal;
1262 }
1263
1264 int64 CWallet::GetWatchOnlyNewMint() const
1265 {
1266     int64 nTotal = 0;
1267     LOCK(cs_wallet);
1268     for (map<uint256, CWalletTx>::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
1269     {
1270         const CWalletTx* pcoin = &(*it).second;
1271         if (pcoin->IsCoinBase() && pcoin->GetBlocksToMaturity() > 0 && pcoin->GetDepthInMainChain() > 0)
1272             nTotal += CWallet::GetCredit(*pcoin, MINE_WATCH_ONLY);
1273     }
1274     return nTotal;
1275 }
1276
1277 bool CWallet::SelectCoinsMinConf(int64 nTargetValue, unsigned int nSpendTime, int nConfMine, int nConfTheirs, vector<COutput> vCoins, set<pair<const CWalletTx*,unsigned int> >& setCoinsRet, int64& nValueRet) const
1278 {
1279     setCoinsRet.clear();
1280     nValueRet = 0;
1281
1282     // List of values less than target
1283     pair<int64, pair<const CWalletTx*,unsigned int> > coinLowestLarger;
1284     coinLowestLarger.first = std::numeric_limits<int64>::max();
1285     coinLowestLarger.second.first = NULL;
1286     vector<pair<int64, pair<const CWalletTx*,unsigned int> > > vValue;
1287     int64 nTotalLower = 0;
1288
1289     random_shuffle(vCoins.begin(), vCoins.end(), GetRandInt);
1290
1291     BOOST_FOREACH(const COutput &output, vCoins)
1292     {
1293         if (!output.fSpendable)
1294             continue;
1295
1296         const CWalletTx *pcoin = output.tx;
1297
1298         if (output.nDepth < (pcoin->IsFromMe(MINE_ALL) ? nConfMine : nConfTheirs))
1299             continue;
1300
1301         int i = output.i;
1302
1303         // Follow the timestamp rules
1304         if (pcoin->nTime > nSpendTime)
1305             continue;
1306
1307         int64 n = pcoin->vout[i].nValue;
1308
1309         pair<int64,pair<const CWalletTx*,unsigned int> > coin = make_pair(n,make_pair(pcoin, i));
1310
1311         if (n == nTargetValue)
1312         {
1313             setCoinsRet.insert(coin.second);
1314             nValueRet += coin.first;
1315             return true;
1316         }
1317         else if (n < nTargetValue + CENT)
1318         {
1319             vValue.push_back(coin);
1320             nTotalLower += n;
1321         }
1322         else if (n < coinLowestLarger.first)
1323         {
1324             coinLowestLarger = coin;
1325         }
1326     }
1327
1328     if (nTotalLower == nTargetValue)
1329     {
1330         for (unsigned int i = 0; i < vValue.size(); ++i)
1331         {
1332             setCoinsRet.insert(vValue[i].second);
1333             nValueRet += vValue[i].first;
1334         }
1335         return true;
1336     }
1337
1338     if (nTotalLower < nTargetValue)
1339     {
1340         if (coinLowestLarger.second.first == NULL)
1341             return false;
1342         setCoinsRet.insert(coinLowestLarger.second);
1343         nValueRet += coinLowestLarger.first;
1344         return true;
1345     }
1346
1347     // Solve subset sum by stochastic approximation
1348     sort(vValue.rbegin(), vValue.rend(), CompareValueOnly());
1349     vector<char> vfBest;
1350     int64 nBest;
1351
1352     ApproximateBestSubset(vValue, nTotalLower, nTargetValue, vfBest, nBest, 1000);
1353     if (nBest != nTargetValue && nTotalLower >= nTargetValue + CENT)
1354         ApproximateBestSubset(vValue, nTotalLower, nTargetValue + CENT, vfBest, nBest, 1000);
1355
1356     // If we have a bigger coin and (either the stochastic approximation didn't find a good solution,
1357     //                                   or the next bigger coin is closer), return the bigger coin
1358     if (coinLowestLarger.second.first &&
1359         ((nBest != nTargetValue && nBest < nTargetValue + CENT) || coinLowestLarger.first <= nBest))
1360     {
1361         setCoinsRet.insert(coinLowestLarger.second);
1362         nValueRet += coinLowestLarger.first;
1363     }
1364     else {
1365         for (unsigned int i = 0; i < vValue.size(); i++)
1366             if (vfBest[i])
1367             {
1368                 setCoinsRet.insert(vValue[i].second);
1369                 nValueRet += vValue[i].first;
1370             }
1371
1372         if (fDebug && GetBoolArg("-printpriority"))
1373         {
1374             //// debug print
1375             printf("SelectCoins() best subset: ");
1376             for (unsigned int i = 0; i < vValue.size(); i++)
1377                 if (vfBest[i])
1378                     printf("%s ", FormatMoney(vValue[i].first).c_str());
1379             printf("total %s\n", FormatMoney(nBest).c_str());
1380         }
1381     }
1382
1383     return true;
1384 }
1385
1386 bool CWallet::SelectCoins(int64 nTargetValue, unsigned int nSpendTime, set<pair<const CWalletTx*,unsigned int> >& setCoinsRet, int64& nValueRet, const CCoinControl* coinControl) const
1387 {
1388     vector<COutput> vCoins;
1389     AvailableCoins(vCoins, true, coinControl);
1390
1391     // coin control -> return all selected outputs (we want all selected to go into the transaction for sure)
1392     if (coinControl && coinControl->HasSelected())
1393     {
1394         BOOST_FOREACH(const COutput& out, vCoins)
1395         {
1396             if(!out.fSpendable)
1397                 continue;
1398             nValueRet += out.tx->vout[out.i].nValue;
1399             setCoinsRet.insert(make_pair(out.tx, out.i));
1400         }
1401         return (nValueRet >= nTargetValue);
1402     }
1403
1404     return (SelectCoinsMinConf(nTargetValue, nSpendTime, 1, 6, vCoins, setCoinsRet, nValueRet) ||
1405             SelectCoinsMinConf(nTargetValue, nSpendTime, 1, 1, vCoins, setCoinsRet, nValueRet) ||
1406             SelectCoinsMinConf(nTargetValue, nSpendTime, 0, 1, vCoins, setCoinsRet, nValueRet));
1407 }
1408
1409 // Select some coins without random shuffle or best subset approximation
1410 bool CWallet::SelectCoinsSimple(int64 nTargetValue, int64 nMinValue, int64 nMaxValue, unsigned int nSpendTime, int nMinConf, set<pair<const CWalletTx*,unsigned int> >& setCoinsRet, int64& nValueRet) const
1411 {
1412     vector<COutput> vCoins;
1413     AvailableCoinsMinConf(vCoins, nMinConf, nMinValue, nMaxValue);
1414
1415     setCoinsRet.clear();
1416     nValueRet = 0;
1417
1418     BOOST_FOREACH(COutput output, vCoins)
1419     {
1420         if(!output.fSpendable)
1421             continue;
1422         const CWalletTx *pcoin = output.tx;
1423         int i = output.i;
1424
1425         // Ignore immature coins
1426         if (pcoin->GetBlocksToMaturity() > 0)
1427             continue;
1428
1429         // Stop if we've chosen enough inputs
1430         if (nValueRet >= nTargetValue)
1431             break;
1432
1433         // Follow the timestamp rules
1434         if (pcoin->nTime > nSpendTime)
1435             continue;
1436
1437         int64 n = pcoin->vout[i].nValue;
1438
1439         pair<int64,pair<const CWalletTx*,unsigned int> > coin = make_pair(n,make_pair(pcoin, i));
1440
1441         if (n >= nTargetValue)
1442         {
1443             // If input value is greater or equal to target then simply insert
1444             //    it into the current subset and exit
1445             setCoinsRet.insert(coin.second);
1446             nValueRet += coin.first;
1447             break;
1448         }
1449         else if (n < nTargetValue + CENT)
1450         {
1451             setCoinsRet.insert(coin.second);
1452             nValueRet += coin.first;
1453         }
1454     }
1455
1456     return true;
1457 }
1458
1459 bool CWallet::CreateTransaction(const vector<pair<CScript, int64> >& vecSend, CWalletTx& wtxNew, CReserveKey& reservekey, int64& nFeeRet, const CCoinControl* coinControl)
1460 {
1461     int64 nValue = 0;
1462     BOOST_FOREACH (const PAIRTYPE(CScript, int64)& s, vecSend)
1463     {
1464         if (nValue < 0)
1465             return false;
1466         nValue += s.second;
1467     }
1468     if (vecSend.empty() || nValue < 0)
1469         return false;
1470
1471     wtxNew.BindWallet(this);
1472
1473     {
1474         LOCK2(cs_main, cs_wallet);
1475         // txdb must be opened before the mapWallet lock
1476         CTxDB txdb("r");
1477         {
1478             nFeeRet = nTransactionFee;
1479             while (true)
1480             {
1481                 wtxNew.vin.clear();
1482                 wtxNew.vout.clear();
1483                 wtxNew.fFromMe = true;
1484
1485                 int64 nTotalValue = nValue + nFeeRet;
1486                 double dPriority = 0;
1487                 // vouts to the payees
1488                 BOOST_FOREACH (const PAIRTYPE(CScript, int64)& s, vecSend)
1489                     wtxNew.vout.push_back(CTxOut(s.second, s.first));
1490
1491                 // Choose coins to use
1492                 set<pair<const CWalletTx*,unsigned int> > setCoins;
1493                 int64 nValueIn = 0;
1494                 if (!SelectCoins(nTotalValue, wtxNew.nTime, setCoins, nValueIn, coinControl))
1495                     return false;
1496                 BOOST_FOREACH(PAIRTYPE(const CWalletTx*, unsigned int) pcoin, setCoins)
1497                 {
1498                     int64 nCredit = pcoin.first->vout[pcoin.second].nValue;
1499                     dPriority += (double)nCredit * pcoin.first->GetDepthInMainChain();
1500                 }
1501
1502                 int64 nChange = nValueIn - nValue - nFeeRet;
1503                 // if sub-cent change is required, the fee must be raised to at least MIN_TX_FEE
1504                 // or until nChange becomes zero
1505                 // NOTE: this depends on the exact behaviour of GetMinFee
1506                 if (wtxNew.nTime < FEE_SWITCH_TIME && !fTestNet)
1507                 {
1508                     if (nFeeRet < MIN_TX_FEE && nChange > 0 && nChange < CENT)
1509                     {
1510                         int64 nMoveToFee = min(nChange, MIN_TX_FEE - nFeeRet);
1511                         nChange -= nMoveToFee;
1512                         nFeeRet += nMoveToFee;
1513                     }
1514
1515                     // sub-cent change is moved to fee
1516                     if (nChange > 0 && nChange < CENT)
1517                     {
1518                         nFeeRet += nChange;
1519                         nChange = 0;
1520                     }
1521                 }
1522
1523                 if (nChange > 0)
1524                 {
1525                     // Fill a vout to ourself
1526                     // TODO: pass in scriptChange instead of reservekey so
1527                     // change transaction isn't always pay-to-bitcoin-address
1528                     CScript scriptChange;
1529
1530                     // coin control: send change to custom address
1531                     if (coinControl && !boost::get<CNoDestination>(&coinControl->destChange))
1532                         scriptChange.SetDestination(coinControl->destChange);
1533
1534                     // no coin control: send change to newly generated address
1535                     else
1536                     {
1537                         // Note: We use a new key here to keep it from being obvious which side is the change.
1538                         //  The drawback is that by not reusing a previous key, the change may be lost if a
1539                         //  backup is restored, if the backup doesn't have the new private key for the change.
1540                         //  If we reused the old key, it would be possible to add code to look for and
1541                         //  rediscover unknown transactions that were written with keys of ours to recover
1542                         //  post-backup change.
1543
1544                         // Reserve a new key pair from key pool
1545                         CPubKey vchPubKey = reservekey.GetReservedKey();
1546
1547                         scriptChange.SetDestination(vchPubKey.GetID());
1548                     }
1549
1550                     // Insert change txn at random position:
1551                     vector<CTxOut>::iterator position = wtxNew.vout.begin()+GetRandInt(wtxNew.vout.size());
1552                     wtxNew.vout.insert(position, CTxOut(nChange, scriptChange));
1553                 }
1554                 else
1555                     reservekey.ReturnKey();
1556
1557                 // Fill vin
1558                 BOOST_FOREACH(const PAIRTYPE(const CWalletTx*,unsigned int)& coin, setCoins)
1559                     wtxNew.vin.push_back(CTxIn(coin.first->GetHash(),coin.second));
1560
1561                 // Sign
1562                 int nIn = 0;
1563                 BOOST_FOREACH(const PAIRTYPE(const CWalletTx*,unsigned int)& coin, setCoins)
1564                     if (!SignSignature(*this, *coin.first, wtxNew, nIn++))
1565                         return false;
1566
1567                 // Limit size
1568                 unsigned int nBytes = ::GetSerializeSize(*(CTransaction*)&wtxNew, SER_NETWORK, PROTOCOL_VERSION);
1569                 if (nBytes >= MAX_BLOCK_SIZE_GEN/5)
1570                     return false;
1571                 dPriority /= nBytes;
1572
1573                 // Check that enough fee is included
1574                 int64 nPayFee = nTransactionFee * (1 + (int64)nBytes / 1000);
1575                 bool fAllowFree = CTransaction::AllowFree(dPriority);
1576
1577                 // Disable free transactions until 1 July 2014
1578                 if (!fTestNet && wtxNew.nTime < FEE_SWITCH_TIME)
1579                 {
1580                     fAllowFree = false;
1581                 }
1582
1583                 int64 nMinFee = wtxNew.GetMinFee(1, fAllowFree, GMF_SEND, nBytes);
1584
1585                 if (nFeeRet < max(nPayFee, nMinFee))
1586                 {
1587                     nFeeRet = max(nPayFee, nMinFee);
1588                     continue;
1589                 }
1590
1591                 // Fill vtxPrev by copying from previous transactions vtxPrev
1592                 wtxNew.AddSupportingTransactions(txdb);
1593                 wtxNew.fTimeReceivedIsTxTime = true;
1594
1595                 break;
1596             }
1597         }
1598     }
1599     return true;
1600 }
1601
1602 bool CWallet::CreateTransaction(CScript scriptPubKey, int64 nValue, CWalletTx& wtxNew, CReserveKey& reservekey, int64& nFeeRet, const CCoinControl* coinControl)
1603 {
1604     vector< pair<CScript, int64> > vecSend;
1605     vecSend.push_back(make_pair(scriptPubKey, nValue));
1606     return CreateTransaction(vecSend, wtxNew, reservekey, nFeeRet, coinControl);
1607 }
1608
1609 void CWallet::GetStakeWeightFromValue(const int64& nTime, const int64& nValue, uint64& nWeight)
1610 {
1611     int64 nTimeWeight = GetWeight(nTime, (int64)GetTime());
1612
1613     // If time weight is lower or equal to zero then weight is zero.
1614     if (nTimeWeight <= 0)
1615     {
1616         nWeight = 0;
1617         return;
1618     }
1619
1620     CBigNum bnCoinDayWeight = CBigNum(nValue) * nTimeWeight / COIN / (24 * 60 * 60);
1621     nWeight = bnCoinDayWeight.getuint64();
1622 }
1623
1624
1625 // NovaCoin: get current stake weight
1626 bool CWallet::GetStakeWeight(const CKeyStore& keystore, uint64& nMinWeight, uint64& nMaxWeight, uint64& nWeight)
1627 {
1628     if (mapMeta.size() == 0 || !fCoinsDataActual)
1629         return false;
1630
1631     // txid => ((txindex, (tx, vout.n)), (block, modifier))
1632     for(MetaMap::const_iterator meta_item = mapMeta.begin(); meta_item != mapMeta.end(); meta_item++)
1633     {
1634         // Get coin
1635         CoinsSet::value_type pcoin = meta_item->second.first.second;
1636
1637         int64 nTimeWeight = GetWeight((int64)pcoin.first->nTime, (int64)GetTime());
1638         CBigNum bnCoinDayWeight = CBigNum(pcoin.first->vout[pcoin.second].nValue) * nTimeWeight / COIN / (24 * 60 * 60);
1639
1640         // Weight is greater than zero
1641         if (nTimeWeight > 0)
1642         {
1643             nWeight += bnCoinDayWeight.getuint64();
1644         }
1645
1646         // Weight is greater than zero, but the maximum value isn't reached yet
1647         if (nTimeWeight > 0 && nTimeWeight < nStakeMaxAge)
1648         {
1649             nMinWeight += bnCoinDayWeight.getuint64();
1650         }
1651
1652         // Maximum weight was reached
1653         if (nTimeWeight == nStakeMaxAge)
1654         {
1655             nMaxWeight += bnCoinDayWeight.getuint64();
1656         }
1657     }
1658
1659     return true;
1660 }
1661
1662 bool CWallet::MergeCoins(const int64& nAmount, const int64& nMinValue, const int64& nOutputValue, list<uint256>& listMerged)
1663 {
1664     int64 nBalance = GetBalance();
1665
1666     if (nAmount > nBalance)
1667         return false;
1668
1669     listMerged.clear();
1670     int64 nValueIn = 0;
1671     set<pair<const CWalletTx*,unsigned int> > setCoins;
1672
1673     // Simple coins selection - no randomization
1674     if (!SelectCoinsSimple(nAmount, nMinValue, nOutputValue, GetTime(), 1, setCoins, nValueIn))
1675         return false;
1676
1677     if (setCoins.empty())
1678         return false;
1679
1680     CWalletTx wtxNew;
1681     vector<const CWalletTx*> vwtxPrev;
1682
1683     // Reserve a new key pair from key pool
1684     CReserveKey reservekey(this);
1685     CPubKey vchPubKey = reservekey.GetReservedKey();
1686
1687     // Output script
1688     CScript scriptOutput;
1689     scriptOutput.SetDestination(vchPubKey.GetID());
1690
1691     // Insert output
1692     wtxNew.vout.push_back(CTxOut(0, scriptOutput));
1693
1694     double dWeight = 0;
1695     BOOST_FOREACH(PAIRTYPE(const CWalletTx*, unsigned int) pcoin, setCoins)
1696     {
1697         int64 nCredit = pcoin.first->vout[pcoin.second].nValue;
1698
1699         // Add current coin to inputs list and add its credit to transaction output
1700         wtxNew.vin.push_back(CTxIn(pcoin.first->GetHash(), pcoin.second));
1701         wtxNew.vout[0].nValue += nCredit;
1702         vwtxPrev.push_back(pcoin.first);
1703
1704 /*
1705         // Replaced with estimation for performance purposes
1706
1707         for (unsigned int i = 0; i < wtxNew.vin.size(); i++) {
1708             const CWalletTx *txin = vwtxPrev[i];
1709
1710             // Sign scripts to get actual transaction size for fee calculation
1711             if (!SignSignature(*this, *txin, wtxNew, i))
1712                 return false;
1713         }
1714 */
1715
1716         // Assuming that average scriptsig size is 110 bytes
1717         int64 nBytes = ::GetSerializeSize(*(CTransaction*)&wtxNew, SER_NETWORK, PROTOCOL_VERSION) + wtxNew.vin.size() * 110;
1718         dWeight += (double)nCredit * pcoin.first->GetDepthInMainChain();
1719
1720         double dFinalPriority = dWeight /= nBytes;
1721         bool fAllowFree = CTransaction::AllowFree(dFinalPriority);
1722
1723         // Get actual transaction fee according to its estimated size and priority
1724         int64 nMinFee = wtxNew.GetMinFee(1, fAllowFree, GMF_SEND, nBytes);
1725
1726         // Prepare transaction for commit if sum is enough ot its size is too big
1727         if (nBytes >= MAX_BLOCK_SIZE_GEN/6 || wtxNew.vout[0].nValue >= nOutputValue)
1728         {
1729             wtxNew.vout[0].nValue -= nMinFee; // Set actual fee
1730
1731             for (unsigned int i = 0; i < wtxNew.vin.size(); i++) {
1732                 const CWalletTx *txin = vwtxPrev[i];
1733
1734                 // Sign all scripts
1735                 if (!SignSignature(*this, *txin, wtxNew, i))
1736                     return false;
1737             }
1738
1739             // Try to commit, return false on failure
1740             if (!CommitTransaction(wtxNew, reservekey))
1741                 return false;
1742
1743             listMerged.push_back(wtxNew.GetHash()); // Add to hashes list
1744
1745             dWeight = 0;  // Reset all temporary values
1746             vwtxPrev.clear();
1747             wtxNew.SetNull();
1748             wtxNew.vout.push_back(CTxOut(0, scriptOutput));
1749         }
1750     }
1751
1752     // Create transactions if there are some unhandled coins left
1753     if (wtxNew.vout[0].nValue > 0) {
1754         int64 nBytes = ::GetSerializeSize(*(CTransaction*)&wtxNew, SER_NETWORK, PROTOCOL_VERSION) + wtxNew.vin.size() * 110;
1755
1756         double dFinalPriority = dWeight /= nBytes;
1757         bool fAllowFree = CTransaction::AllowFree(dFinalPriority);
1758
1759         // Get actual transaction fee according to its size and priority
1760         int64 nMinFee = wtxNew.GetMinFee(1, fAllowFree, GMF_SEND, nBytes);
1761
1762         wtxNew.vout[0].nValue -= nMinFee; // Set actual fee
1763
1764         if (wtxNew.vout[0].nValue <= 0)
1765             return false;
1766
1767         for (unsigned int i = 0; i < wtxNew.vin.size(); i++) {
1768             const CWalletTx *txin = vwtxPrev[i];
1769
1770             // Sign all scripts again
1771             if (!SignSignature(*this, *txin, wtxNew, i))
1772                 return false;
1773         }
1774
1775         // Try to commit, return false on failure
1776         if (!CommitTransaction(wtxNew, reservekey))
1777             return false;
1778
1779         listMerged.push_back(wtxNew.GetHash()); // Add to hashes list
1780     }
1781
1782     return true;
1783 }
1784
1785
1786 bool CWallet::CreateCoinStake(const CKeyStore& keystore, unsigned int nBits, int64 nSearchInterval, CTransaction& txNew, CKey& key)
1787 {
1788     // The following combine threshold is important to security
1789     // Should not be adjusted if you don't understand the consequences
1790     int64 nCombineThreshold = GetProofOfWorkReward(GetLastBlockIndex(pindexBest, false)->nBits) / 3;
1791
1792     CBigNum bnTargetPerCoinDay;
1793     bnTargetPerCoinDay.SetCompact(nBits);
1794
1795     txNew.vin.clear();
1796     txNew.vout.clear();
1797
1798     // Mark coin stake transaction
1799     CScript scriptEmpty;
1800     scriptEmpty.clear();
1801     txNew.vout.push_back(CTxOut(0, scriptEmpty));
1802
1803     // Choose coins to use
1804     int64 nBalance = GetBalance();
1805     int64 nReserveBalance = 0;
1806
1807     if (mapArgs.count("-reservebalance") && !ParseMoney(mapArgs["-reservebalance"], nReserveBalance))
1808         return error("CreateCoinStake : invalid reserve balance amount");
1809
1810     if (nBalance <= nReserveBalance)
1811         return false;
1812
1813     vector<const CWalletTx*> vwtxPrev;
1814
1815     CTxDB txdb("r");
1816     {
1817         LOCK2(cs_main, cs_wallet);
1818         // Cache outputs unless best block or wallet transaction set changed
1819         if (!fCoinsDataActual)
1820         {
1821             mapMeta.clear();
1822             int64 nValueIn = 0;
1823             CoinsSet setCoins;
1824             if (!SelectCoinsSimple(nBalance - nReserveBalance, MIN_TX_FEE, MAX_MONEY, txNew.nTime, nCoinbaseMaturity * 10, setCoins, nValueIn))
1825                 return false;
1826
1827             if (setCoins.empty())
1828                 return false;
1829
1830             {
1831                 CTxIndex txindex;
1832                 CBlock block;
1833                 for(CoinsSet::iterator pcoin = setCoins.begin(); pcoin != setCoins.end(); pcoin++)
1834                 {
1835                     // Load transaction index item
1836                     if (!txdb.ReadTxIndex(pcoin->first->GetHash(), txindex))
1837                         continue;
1838
1839                     // Read block header
1840                     if (!block.ReadFromDisk(txindex.pos.nFile, txindex.pos.nBlockPos, false))
1841                         continue;
1842
1843                     uint64 nStakeModifier = 0;
1844                     if (!GetKernelStakeModifier(block.GetHash(), nStakeModifier))
1845                         continue;
1846
1847                     // Add meta record
1848                     // txid => ((txindex, (tx, vout.n)), (block, modifier))
1849                     mapMeta[pcoin->first->GetHash()] = make_pair(make_pair(txindex, *pcoin), make_pair(block, nStakeModifier));
1850
1851                     if (fDebug)
1852                         printf("Load coin: %s\n", pcoin->first->GetHash().GetHex().c_str());
1853                 }
1854             }
1855
1856             if (fDebug)
1857                 printf("Stake miner: %zu meta items loaded for %zu coins\n", mapMeta.size(), setCoins.size());
1858
1859             fCoinsDataActual = true;
1860         }
1861     }
1862
1863     int64 nCredit = 0;
1864     CScript scriptPubKeyKernel;
1865
1866     KernelSearchSettings settings;
1867     settings.nBits = nBits;
1868     settings.nTime = txNew.nTime;
1869     settings.nOffset = 0;
1870     settings.nLimit = mapMeta.size();
1871     settings.nSearchInterval = nSearchInterval;
1872
1873     unsigned int nTimeTx, nBlockTime;
1874     COutPoint prevoutStake;
1875     CoinsSet::value_type kernelcoin;
1876
1877     if (ScanForStakeKernelHash(mapMeta, settings, kernelcoin, nTimeTx, nBlockTime))
1878     {
1879         // Found a kernel
1880         if (fDebug && GetBoolArg("-printcoinstake"))
1881             printf("CreateCoinStake : kernel found\n");
1882         vector<valtype> vSolutions;
1883         txnouttype whichType;
1884         CScript scriptPubKeyOut;
1885         scriptPubKeyKernel = kernelcoin.first->vout[kernelcoin.second].scriptPubKey;
1886         if (!Solver(scriptPubKeyKernel, whichType, vSolutions))
1887         {
1888             if (fDebug && GetBoolArg("-printcoinstake"))
1889                 printf("CreateCoinStake : failed to parse kernel\n");
1890             return false;
1891         }
1892         if (fDebug && GetBoolArg("-printcoinstake"))
1893             printf("CreateCoinStake : parsed kernel type=%d\n", whichType);
1894         if (whichType != TX_PUBKEY && whichType != TX_PUBKEYHASH)
1895         {
1896             if (fDebug && GetBoolArg("-printcoinstake"))
1897                 printf("CreateCoinStake : no support for kernel type=%d\n", whichType);
1898             return false;  // only support pay to public key and pay to address
1899         }
1900         if (whichType == TX_PUBKEYHASH) // pay to address type
1901         {
1902             // convert to pay to public key type
1903             if (!keystore.GetKey(uint160(vSolutions[0]), key))
1904             {
1905                 if (fDebug && GetBoolArg("-printcoinstake"))
1906                     printf("CreateCoinStake : failed to get key for kernel type=%d\n", whichType);
1907                 return false;  // unable to find corresponding public key
1908             }
1909             scriptPubKeyOut << key.GetPubKey() << OP_CHECKSIG;
1910         }
1911         if (whichType == TX_PUBKEY)
1912         {
1913             valtype& vchPubKey = vSolutions[0];
1914             if (!keystore.GetKey(Hash160(vchPubKey), key))
1915             {
1916                 if (fDebug && GetBoolArg("-printcoinstake"))
1917                     printf("CreateCoinStake : failed to get key for kernel type=%d\n", whichType);
1918                 return false;  // unable to find corresponding public key
1919             }
1920             if (key.GetPubKey() != vchPubKey)
1921             {
1922                 if (fDebug && GetBoolArg("-printcoinstake"))
1923                     printf("CreateCoinStake : invalid key for kernel type=%d\n", whichType);
1924                 return false; // keys mismatch
1925             }
1926
1927             scriptPubKeyOut = scriptPubKeyKernel;
1928         }
1929
1930         txNew.nTime = nTimeTx;
1931         txNew.vin.push_back(CTxIn(kernelcoin.first->GetHash(), kernelcoin.second));
1932         nCredit += kernelcoin.first->vout[kernelcoin.second].nValue;
1933         vwtxPrev.push_back(kernelcoin.first);
1934         txNew.vout.push_back(CTxOut(0, scriptPubKeyOut));
1935
1936         if (GetWeight((int64)nBlockTime, (int64)txNew.nTime) < nStakeMaxAge)
1937             txNew.vout.push_back(CTxOut(0, scriptPubKeyOut)); //split stake
1938         if (fDebug && GetBoolArg("-printcoinstake"))
1939             printf("CreateCoinStake : added kernel type=%d\n", whichType);
1940     }
1941
1942     if (nCredit == 0 || nCredit > nBalance - nReserveBalance)
1943         return false;
1944
1945     // txid => ((txindex, (tx, vout.n)), (block, modifier))
1946     for(MetaMap::const_iterator meta_item = mapMeta.begin(); meta_item != mapMeta.end(); meta_item++)
1947     {
1948         // Get coin
1949         CoinsSet::value_type pcoin = meta_item->second.first.second;
1950
1951         // Attempt to add more inputs
1952         // Only add coins of the same key/address as kernel
1953         if (txNew.vout.size() == 2 && ((pcoin.first->vout[pcoin.second].scriptPubKey == scriptPubKeyKernel || pcoin.first->vout[pcoin.second].scriptPubKey == txNew.vout[1].scriptPubKey))
1954             && pcoin.first->GetHash() != txNew.vin[0].prevout.hash)
1955         {
1956             int64 nTimeWeight = GetWeight((int64)pcoin.first->nTime, (int64)txNew.nTime);
1957
1958             // Stop adding more inputs if already too many inputs
1959             if (txNew.vin.size() >= 100)
1960                 break;
1961             // Stop adding more inputs if value is already pretty significant
1962             if (nCredit > nCombineThreshold)
1963                 break;
1964             // Stop adding inputs if reached reserve limit
1965             if (nCredit + pcoin.first->vout[pcoin.second].nValue > nBalance - nReserveBalance)
1966                 break;
1967             // Do not add additional significant input
1968             if (pcoin.first->vout[pcoin.second].nValue > nCombineThreshold)
1969                 continue;
1970             // Do not add input that is still too young
1971             if (nTimeWeight < nStakeMaxAge)
1972                 continue;
1973
1974             txNew.vin.push_back(CTxIn(pcoin.first->GetHash(), pcoin.second));
1975             nCredit += pcoin.first->vout[pcoin.second].nValue;
1976             vwtxPrev.push_back(pcoin.first);
1977         }
1978     }
1979
1980     // Calculate coin age reward
1981     {
1982         uint64 nCoinAge;
1983         CTxDB txdb("r");
1984         if (!txNew.GetCoinAge(txdb, nCoinAge))
1985             return error("CreateCoinStake : failed to calculate coin age");
1986         nCredit += GetProofOfStakeReward(nCoinAge, nBits, txNew.nTime);
1987     }
1988
1989     int64 nMinFee = 0;
1990     while (true)
1991     {
1992         // Set output amount
1993         if (txNew.vout.size() == 3)
1994         {
1995             txNew.vout[1].nValue = ((nCredit - nMinFee) / 2 / CENT) * CENT;
1996             txNew.vout[2].nValue = nCredit - nMinFee - txNew.vout[1].nValue;
1997         }
1998         else
1999             txNew.vout[1].nValue = nCredit - nMinFee;
2000
2001         // Sign
2002         int nIn = 0;
2003         BOOST_FOREACH(const CWalletTx* pcoin, vwtxPrev)
2004         {
2005             if (!SignSignature(*this, *pcoin, txNew, nIn++))
2006                 return error("CreateCoinStake : failed to sign coinstake");
2007         }
2008
2009         // Limit size
2010         unsigned int nBytes = ::GetSerializeSize(txNew, SER_NETWORK, PROTOCOL_VERSION);
2011         if (nBytes >= MAX_BLOCK_SIZE_GEN/5)
2012             return error("CreateCoinStake : exceeded coinstake size limit");
2013
2014         // Check enough fee is paid
2015         if (nMinFee < txNew.GetMinFee(1, false, GMF_BLOCK, nBytes) - CENT)
2016         {
2017             nMinFee = txNew.GetMinFee(1, false, GMF_BLOCK, nBytes) - CENT;
2018             continue; // try signing again
2019         }
2020         else
2021         {
2022             if (fDebug && GetBoolArg("-printfee"))
2023                 printf("CreateCoinStake : fee for coinstake %s\n", FormatMoney(nMinFee).c_str());
2024             break;
2025         }
2026     }
2027
2028     // Successfully generated coinstake
2029     return true;
2030 }
2031
2032
2033 // Call after CreateTransaction unless you want to abort
2034 bool CWallet::CommitTransaction(CWalletTx& wtxNew, CReserveKey& reservekey)
2035 {
2036     {
2037         LOCK2(cs_main, cs_wallet);
2038         printf("CommitTransaction:\n%s", wtxNew.ToString().c_str());
2039         {
2040             // This is only to keep the database open to defeat the auto-flush for the
2041             // duration of this scope.  This is the only place where this optimization
2042             // maybe makes sense; please don't do it anywhere else.
2043             CWalletDB* pwalletdb = fFileBacked ? new CWalletDB(strWalletFile,"r") : NULL;
2044
2045             // Take key pair from key pool so it won't be used again
2046             reservekey.KeepKey();
2047
2048             // Add tx to wallet, because if it has change it's also ours,
2049             // otherwise just for transaction history.
2050             AddToWallet(wtxNew);
2051
2052             // Mark old coins as spent
2053             set<CWalletTx*> setCoins;
2054             BOOST_FOREACH(const CTxIn& txin, wtxNew.vin)
2055             {
2056                 CWalletTx &coin = mapWallet[txin.prevout.hash];
2057                 coin.BindWallet(this);
2058                 coin.MarkSpent(txin.prevout.n);
2059                 coin.WriteToDisk();
2060                 NotifyTransactionChanged(this, coin.GetHash(), CT_UPDATED);
2061             }
2062
2063             if (fFileBacked)
2064                 delete pwalletdb;
2065         }
2066
2067         // Track how many getdata requests our transaction gets
2068         mapRequestCount[wtxNew.GetHash()] = 0;
2069
2070         // Broadcast
2071         if (!wtxNew.AcceptToMemoryPool())
2072         {
2073             // This must not fail. The transaction has already been signed and recorded.
2074             printf("CommitTransaction() : Error: Transaction not valid");
2075             return false;
2076         }
2077         wtxNew.RelayWalletTransaction();
2078     }
2079     return true;
2080 }
2081
2082
2083
2084
2085 string CWallet::SendMoney(CScript scriptPubKey, int64 nValue, CWalletTx& wtxNew, bool fAskFee)
2086 {
2087     CReserveKey reservekey(this);
2088     int64 nFeeRequired;
2089
2090     if (IsLocked())
2091     {
2092         string strError = _("Error: Wallet locked, unable to create transaction  ");
2093         printf("SendMoney() : %s", strError.c_str());
2094         return strError;
2095     }
2096     if (fWalletUnlockMintOnly)
2097     {
2098         string strError = _("Error: Wallet unlocked for block minting only, unable to create transaction.");
2099         printf("SendMoney() : %s", strError.c_str());
2100         return strError;
2101     }
2102     if (!CreateTransaction(scriptPubKey, nValue, wtxNew, reservekey, nFeeRequired))
2103     {
2104         string strError;
2105         if (nValue + nFeeRequired > GetBalance())
2106             strError = strprintf(_("Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds  "), FormatMoney(nFeeRequired).c_str());
2107         else
2108             strError = _("Error: Transaction creation failed  ");
2109         printf("SendMoney() : %s", strError.c_str());
2110         return strError;
2111     }
2112
2113     if (fAskFee && !uiInterface.ThreadSafeAskFee(nFeeRequired, _("Sending...")))
2114         return "ABORTED";
2115
2116     if (!CommitTransaction(wtxNew, reservekey))
2117         return _("Error: The transaction was rejected.  This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here.");
2118
2119     return "";
2120 }
2121
2122
2123
2124 string CWallet::SendMoneyToDestination(const CTxDestination& address, int64 nValue, CWalletTx& wtxNew, bool fAskFee)
2125 {
2126     // Check amount
2127     if (nValue <= 0)
2128         return _("Invalid amount");
2129     if (nValue + nTransactionFee > GetBalance())
2130         return _("Insufficient funds");
2131
2132     // Parse Bitcoin address
2133     CScript scriptPubKey;
2134     scriptPubKey.SetDestination(address);
2135
2136     return SendMoney(scriptPubKey, nValue, wtxNew, fAskFee);
2137 }
2138
2139
2140
2141
2142 DBErrors CWallet::LoadWallet(bool& fFirstRunRet)
2143 {
2144     if (!fFileBacked)
2145         return DB_LOAD_OK;
2146     fFirstRunRet = false;
2147     DBErrors nLoadWalletRet = CWalletDB(strWalletFile,"cr+").LoadWallet(this);
2148     if (nLoadWalletRet == DB_NEED_REWRITE)
2149     {
2150         if (CDB::Rewrite(strWalletFile, "\x04pool"))
2151         {
2152             setKeyPool.clear();
2153             // Note: can't top-up keypool here, because wallet is locked.
2154             // User will be prompted to unlock wallet the next operation
2155             // the requires a new key.
2156         }
2157     }
2158
2159     if (nLoadWalletRet != DB_LOAD_OK)
2160         return nLoadWalletRet;
2161     fFirstRunRet = !vchDefaultKey.IsValid();
2162
2163     NewThread(ThreadFlushWalletDB, &strWalletFile);
2164     return DB_LOAD_OK;
2165 }
2166
2167
2168 bool CWallet::SetAddressBookName(const CTxDestination& address, const string& strName)
2169 {
2170     std::map<CTxDestination, std::string>::iterator mi = mapAddressBook.find(address);
2171     mapAddressBook[address] = strName;
2172     NotifyAddressBookChanged(this, address, strName, ::IsMine(*this, address), (mi == mapAddressBook.end()) ? CT_NEW : CT_UPDATED);
2173     if (!fFileBacked)
2174         return false;
2175     return CWalletDB(strWalletFile).WriteName(CBitcoinAddress(address).ToString(), strName);
2176 }
2177
2178 bool CWallet::DelAddressBookName(const CTxDestination& address)
2179 {
2180     mapAddressBook.erase(address);
2181     NotifyAddressBookChanged(this, address, "", ::IsMine(*this, address), CT_DELETED);
2182     if (!fFileBacked)
2183         return false;
2184     return CWalletDB(strWalletFile).EraseName(CBitcoinAddress(address).ToString());
2185 }
2186
2187
2188 void CWallet::PrintWallet(const CBlock& block)
2189 {
2190     {
2191         LOCK(cs_wallet);
2192         if (block.IsProofOfWork() && mapWallet.count(block.vtx[0].GetHash()))
2193         {
2194             CWalletTx& wtx = mapWallet[block.vtx[0].GetHash()];
2195             printf("    mine:  %d  %d  %"PRI64d"", wtx.GetDepthInMainChain(), wtx.GetBlocksToMaturity(), wtx.GetCredit());
2196         }
2197         if (block.IsProofOfStake() && mapWallet.count(block.vtx[1].GetHash()))
2198         {
2199             CWalletTx& wtx = mapWallet[block.vtx[1].GetHash()];
2200             printf("    stake: %d  %d  %"PRI64d"", wtx.GetDepthInMainChain(), wtx.GetBlocksToMaturity(), wtx.GetCredit());
2201          }
2202
2203     }
2204     printf("\n");
2205 }
2206
2207 bool CWallet::GetTransaction(const uint256 &hashTx, CWalletTx& wtx)
2208 {
2209     {
2210         LOCK(cs_wallet);
2211         map<uint256, CWalletTx>::iterator mi = mapWallet.find(hashTx);
2212         if (mi != mapWallet.end())
2213         {
2214             wtx = (*mi).second;
2215             return true;
2216         }
2217     }
2218     return false;
2219 }
2220
2221 bool CWallet::SetDefaultKey(const CPubKey &vchPubKey)
2222 {
2223     if (fFileBacked)
2224     {
2225         if (!CWalletDB(strWalletFile).WriteDefaultKey(vchPubKey))
2226             return false;
2227     }
2228     vchDefaultKey = vchPubKey;
2229     return true;
2230 }
2231
2232 bool GetWalletFile(CWallet* pwallet, string &strWalletFileOut)
2233 {
2234     if (!pwallet->fFileBacked)
2235         return false;
2236     strWalletFileOut = pwallet->strWalletFile;
2237     return true;
2238 }
2239
2240 //
2241 // Mark old keypool keys as used,
2242 // and generate all new keys
2243 //
2244 bool CWallet::NewKeyPool()
2245 {
2246     {
2247         LOCK(cs_wallet);
2248         CWalletDB walletdb(strWalletFile);
2249         BOOST_FOREACH(int64 nIndex, setKeyPool)
2250             walletdb.ErasePool(nIndex);
2251         setKeyPool.clear();
2252
2253         if (IsLocked())
2254             return false;
2255
2256         int64 nKeys = max(GetArg("-keypool", 100), (int64)0);
2257         for (int i = 0; i < nKeys; i++)
2258         {
2259             int64 nIndex = i+1;
2260             walletdb.WritePool(nIndex, CKeyPool(GenerateNewKey()));
2261             setKeyPool.insert(nIndex);
2262         }
2263         printf("CWallet::NewKeyPool wrote %"PRI64d" new keys\n", nKeys);
2264     }
2265     return true;
2266 }
2267
2268 bool CWallet::TopUpKeyPool(unsigned int nSize)
2269 {
2270     {
2271         LOCK(cs_wallet);
2272
2273         if (IsLocked())
2274             return false;
2275
2276         CWalletDB walletdb(strWalletFile);
2277
2278         // Top up key pool
2279         unsigned int nTargetSize;
2280         if (nSize > 0)
2281             nTargetSize = nSize;
2282         else
2283             nTargetSize = max(GetArg("-keypool", 100), 0LL);
2284
2285         while (setKeyPool.size() < (nTargetSize + 1))
2286         {
2287             int64 nEnd = 1;
2288             if (!setKeyPool.empty())
2289                 nEnd = *(--setKeyPool.end()) + 1;
2290             if (!walletdb.WritePool(nEnd, CKeyPool(GenerateNewKey())))
2291                 throw runtime_error("TopUpKeyPool() : writing generated key failed");
2292             setKeyPool.insert(nEnd);
2293             printf("keypool added key %"PRI64d", size=%"PRIszu"\n", nEnd, setKeyPool.size());
2294         }
2295     }
2296     return true;
2297 }
2298
2299 void CWallet::ReserveKeyFromKeyPool(int64& nIndex, CKeyPool& keypool)
2300 {
2301     nIndex = -1;
2302     keypool.vchPubKey = CPubKey();
2303     {
2304         LOCK(cs_wallet);
2305
2306         if (!IsLocked())
2307             TopUpKeyPool();
2308
2309         // Get the oldest key
2310         if(setKeyPool.empty())
2311             return;
2312
2313         CWalletDB walletdb(strWalletFile);
2314
2315         nIndex = *(setKeyPool.begin());
2316         setKeyPool.erase(setKeyPool.begin());
2317         if (!walletdb.ReadPool(nIndex, keypool))
2318             throw runtime_error("ReserveKeyFromKeyPool() : read failed");
2319         if (!HaveKey(keypool.vchPubKey.GetID()))
2320             throw runtime_error("ReserveKeyFromKeyPool() : unknown key in key pool");
2321         assert(keypool.vchPubKey.IsValid());
2322         if (fDebug && GetBoolArg("-printkeypool"))
2323             printf("keypool reserve %"PRI64d"\n", nIndex);
2324     }
2325 }
2326
2327 int64 CWallet::AddReserveKey(const CKeyPool& keypool)
2328 {
2329     {
2330         LOCK2(cs_main, cs_wallet);
2331         CWalletDB walletdb(strWalletFile);
2332
2333         int64 nIndex = 1 + *(--setKeyPool.end());
2334         if (!walletdb.WritePool(nIndex, keypool))
2335             throw runtime_error("AddReserveKey() : writing added key failed");
2336         setKeyPool.insert(nIndex);
2337         return nIndex;
2338     }
2339     return -1;
2340 }
2341
2342 void CWallet::KeepKey(int64 nIndex)
2343 {
2344     // Remove from key pool
2345     if (fFileBacked)
2346     {
2347         CWalletDB walletdb(strWalletFile);
2348         walletdb.ErasePool(nIndex);
2349     }
2350     if(fDebug)
2351         printf("keypool keep %"PRI64d"\n", nIndex);
2352 }
2353
2354 void CWallet::ReturnKey(int64 nIndex)
2355 {
2356     // Return to key pool
2357     {
2358         LOCK(cs_wallet);
2359         setKeyPool.insert(nIndex);
2360     }
2361     if(fDebug)
2362         printf("keypool return %"PRI64d"\n", nIndex);
2363 }
2364
2365 bool CWallet::GetKeyFromPool(CPubKey& result, bool fAllowReuse)
2366 {
2367     int64 nIndex = 0;
2368     CKeyPool keypool;
2369     {
2370         LOCK(cs_wallet);
2371         ReserveKeyFromKeyPool(nIndex, keypool);
2372         if (nIndex == -1)
2373         {
2374             if (fAllowReuse && vchDefaultKey.IsValid())
2375             {
2376                 result = vchDefaultKey;
2377                 return true;
2378             }
2379             if (IsLocked()) return false;
2380             result = GenerateNewKey();
2381             return true;
2382         }
2383         KeepKey(nIndex);
2384         result = keypool.vchPubKey;
2385     }
2386     return true;
2387 }
2388
2389 int64 CWallet::GetOldestKeyPoolTime()
2390 {
2391     int64 nIndex = 0;
2392     CKeyPool keypool;
2393     ReserveKeyFromKeyPool(nIndex, keypool);
2394     if (nIndex == -1)
2395         return GetTime();
2396     ReturnKey(nIndex);
2397     return keypool.nTime;
2398 }
2399
2400 std::map<CTxDestination, int64> CWallet::GetAddressBalances()
2401 {
2402     map<CTxDestination, int64> balances;
2403
2404     {
2405         LOCK(cs_wallet);
2406         BOOST_FOREACH(PAIRTYPE(uint256, CWalletTx) walletEntry, mapWallet)
2407         {
2408             CWalletTx *pcoin = &walletEntry.second;
2409
2410             if (!pcoin->IsFinal() || !pcoin->IsTrusted())
2411                 continue;
2412
2413             if ((pcoin->IsCoinBase() || pcoin->IsCoinStake()) && pcoin->GetBlocksToMaturity() > 0)
2414                 continue;
2415
2416             int nDepth = pcoin->GetDepthInMainChain();
2417             if (nDepth < (pcoin->IsFromMe(MINE_ALL) ? 0 : 1))
2418                 continue;
2419
2420             for (unsigned int i = 0; i < pcoin->vout.size(); i++)
2421             {
2422                 CTxDestination addr;
2423                 if (!IsMine(pcoin->vout[i]))
2424                     continue;
2425                 if(!ExtractDestination(pcoin->vout[i].scriptPubKey, addr))
2426                     continue;
2427
2428                 int64 n = pcoin->IsSpent(i) ? 0 : pcoin->vout[i].nValue;
2429
2430                 if (!balances.count(addr))
2431                     balances[addr] = 0;
2432                 balances[addr] += n;
2433             }
2434         }
2435     }
2436
2437     return balances;
2438 }
2439
2440 set< set<CTxDestination> > CWallet::GetAddressGroupings()
2441 {
2442     set< set<CTxDestination> > groupings;
2443     set<CTxDestination> grouping;
2444
2445     BOOST_FOREACH(PAIRTYPE(uint256, CWalletTx) walletEntry, mapWallet)
2446     {
2447         CWalletTx *pcoin = &walletEntry.second;
2448
2449         if (pcoin->vin.size() > 0 && IsMine(pcoin->vin[0]))
2450         {
2451             // group all input addresses with each other
2452             BOOST_FOREACH(CTxIn txin, pcoin->vin)
2453             {
2454                 CTxDestination address;
2455                 if(!ExtractDestination(mapWallet[txin.prevout.hash].vout[txin.prevout.n].scriptPubKey, address))
2456                     continue;
2457                 grouping.insert(address);
2458             }
2459
2460             // group change with input addresses
2461             BOOST_FOREACH(CTxOut txout, pcoin->vout)
2462                 if (IsChange(txout))
2463                 {
2464                     CWalletTx tx = mapWallet[pcoin->vin[0].prevout.hash];
2465                     CTxDestination txoutAddr;
2466                     if(!ExtractDestination(txout.scriptPubKey, txoutAddr))
2467                         continue;
2468                     grouping.insert(txoutAddr);
2469                 }
2470             groupings.insert(grouping);
2471             grouping.clear();
2472         }
2473
2474         // group lone addrs by themselves
2475         for (unsigned int i = 0; i < pcoin->vout.size(); i++)
2476             if (IsMine(pcoin->vout[i]))
2477             {
2478                 CTxDestination address;
2479                 if(!ExtractDestination(pcoin->vout[i].scriptPubKey, address))
2480                     continue;
2481                 grouping.insert(address);
2482                 groupings.insert(grouping);
2483                 grouping.clear();
2484             }
2485     }
2486
2487     set< set<CTxDestination>* > uniqueGroupings; // a set of pointers to groups of addresses
2488     map< CTxDestination, set<CTxDestination>* > setmap;  // map addresses to the unique group containing it
2489     BOOST_FOREACH(set<CTxDestination> grouping, groupings)
2490     {
2491         // make a set of all the groups hit by this new group
2492         set< set<CTxDestination>* > hits;
2493         map< CTxDestination, set<CTxDestination>* >::iterator it;
2494         BOOST_FOREACH(CTxDestination address, grouping)
2495             if ((it = setmap.find(address)) != setmap.end())
2496                 hits.insert((*it).second);
2497
2498         // merge all hit groups into a new single group and delete old groups
2499         set<CTxDestination>* merged = new set<CTxDestination>(grouping);
2500         BOOST_FOREACH(set<CTxDestination>* hit, hits)
2501         {
2502             merged->insert(hit->begin(), hit->end());
2503             uniqueGroupings.erase(hit);
2504             delete hit;
2505         }
2506         uniqueGroupings.insert(merged);
2507
2508         // update setmap
2509         BOOST_FOREACH(CTxDestination element, *merged)
2510             setmap[element] = merged;
2511     }
2512
2513     set< set<CTxDestination> > ret;
2514     BOOST_FOREACH(set<CTxDestination>* uniqueGrouping, uniqueGroupings)
2515     {
2516         ret.insert(*uniqueGrouping);
2517         delete uniqueGrouping;
2518     }
2519
2520     return ret;
2521 }
2522
2523 // ppcoin: check 'spent' consistency between wallet and txindex
2524 // ppcoin: fix wallet spent state according to txindex
2525 void CWallet::FixSpentCoins(int& nMismatchFound, int64& nBalanceInQuestion, bool fCheckOnly)
2526 {
2527     nMismatchFound = 0;
2528     nBalanceInQuestion = 0;
2529
2530     LOCK(cs_wallet);
2531     vector<CWalletTx*> vCoins;
2532     vCoins.reserve(mapWallet.size());
2533     for (map<uint256, CWalletTx>::iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
2534         vCoins.push_back(&(*it).second);
2535
2536     CTxDB txdb("r");
2537     BOOST_FOREACH(CWalletTx* pcoin, vCoins)
2538     {
2539         // Find the corresponding transaction index
2540         CTxIndex txindex;
2541         if (!txdb.ReadTxIndex(pcoin->GetHash(), txindex))
2542             continue;
2543         for (unsigned int n=0; n < pcoin->vout.size(); n++)
2544         {
2545             if (IsMine(pcoin->vout[n]) && pcoin->IsSpent(n) && (txindex.vSpent.size() <= n || txindex.vSpent[n].IsNull()))
2546             {
2547                 printf("FixSpentCoins found lost coin %sppc %s[%d], %s\n",
2548                     FormatMoney(pcoin->vout[n].nValue).c_str(), pcoin->GetHash().ToString().c_str(), n, fCheckOnly? "repair not attempted" : "repairing");
2549                 nMismatchFound++;
2550                 nBalanceInQuestion += pcoin->vout[n].nValue;
2551                 if (!fCheckOnly)
2552                 {
2553                     pcoin->MarkUnspent(n);
2554                     pcoin->WriteToDisk();
2555                 }
2556             }
2557             else if (IsMine(pcoin->vout[n]) && !pcoin->IsSpent(n) && (txindex.vSpent.size() > n && !txindex.vSpent[n].IsNull()))
2558             {
2559                 printf("FixSpentCoins found spent coin %sppc %s[%d], %s\n",
2560                     FormatMoney(pcoin->vout[n].nValue).c_str(), pcoin->GetHash().ToString().c_str(), n, fCheckOnly? "repair not attempted" : "repairing");
2561                 nMismatchFound++;
2562                 nBalanceInQuestion += pcoin->vout[n].nValue;
2563                 if (!fCheckOnly)
2564                 {
2565                     pcoin->MarkSpent(n);
2566                     pcoin->WriteToDisk();
2567                 }
2568             }
2569
2570         }
2571
2572         if(IsMine((CTransaction)*pcoin) && (pcoin->IsCoinBase() || pcoin->IsCoinStake()) && pcoin->GetDepthInMainChain() == 0)
2573         {
2574             printf("FixSpentCoins %s tx %s\n", fCheckOnly ? "found" : "removed", pcoin->GetHash().ToString().c_str());
2575             if (!fCheckOnly)
2576             {
2577                 EraseFromWallet(pcoin->GetHash());
2578             }
2579         }
2580     }
2581 }
2582
2583 // ppcoin: disable transaction (only for coinstake)
2584 void CWallet::DisableTransaction(const CTransaction &tx)
2585 {
2586     if (!tx.IsCoinStake() || !IsFromMe(tx))
2587         return; // only disconnecting coinstake requires marking input unspent
2588
2589     LOCK(cs_wallet);
2590     BOOST_FOREACH(const CTxIn& txin, tx.vin)
2591     {
2592         map<uint256, CWalletTx>::iterator mi = mapWallet.find(txin.prevout.hash);
2593         if (mi != mapWallet.end())
2594         {
2595             CWalletTx& prev = (*mi).second;
2596             if (txin.prevout.n < prev.vout.size() && IsMine(prev.vout[txin.prevout.n]))
2597             {
2598                 prev.MarkUnspent(txin.prevout.n);
2599                 prev.WriteToDisk();
2600             }
2601         }
2602     }
2603 }
2604
2605 CPubKey CReserveKey::GetReservedKey()
2606 {
2607     if (nIndex == -1)
2608     {
2609         CKeyPool keypool;
2610         pwallet->ReserveKeyFromKeyPool(nIndex, keypool);
2611         if (nIndex != -1)
2612             vchPubKey = keypool.vchPubKey;
2613         else
2614         {
2615             printf("CReserveKey::GetReservedKey(): Warning: Using default key instead of a new key, top up your keypool!");
2616             vchPubKey = pwallet->vchDefaultKey;
2617         }
2618     }
2619     assert(vchPubKey.IsValid());
2620     return vchPubKey;
2621 }
2622
2623 void CReserveKey::KeepKey()
2624 {
2625     if (nIndex != -1)
2626         pwallet->KeepKey(nIndex);
2627     nIndex = -1;
2628     vchPubKey = CPubKey();
2629 }
2630
2631 void CReserveKey::ReturnKey()
2632 {
2633     if (nIndex != -1)
2634         pwallet->ReturnKey(nIndex);
2635     nIndex = -1;
2636     vchPubKey = CPubKey();
2637 }
2638
2639 void CWallet::GetAllReserveKeys(set<CKeyID>& setAddress) const
2640 {
2641     setAddress.clear();
2642
2643     CWalletDB walletdb(strWalletFile);
2644
2645     LOCK2(cs_main, cs_wallet);
2646     BOOST_FOREACH(const int64& id, setKeyPool)
2647     {
2648         CKeyPool keypool;
2649         if (!walletdb.ReadPool(id, keypool))
2650             throw runtime_error("GetAllReserveKeyHashes() : read failed");
2651         assert(keypool.vchPubKey.IsValid());
2652         CKeyID keyID = keypool.vchPubKey.GetID();
2653         if (!HaveKey(keyID))
2654             throw runtime_error("GetAllReserveKeyHashes() : unknown key in key pool");
2655         setAddress.insert(keyID);
2656     }
2657 }
2658
2659 void CWallet::UpdatedTransaction(const uint256 &hashTx)
2660 {
2661     {
2662         LOCK(cs_wallet);
2663         // Only notify UI if this transaction is in this wallet
2664         map<uint256, CWalletTx>::const_iterator mi = mapWallet.find(hashTx);
2665         if (mi != mapWallet.end())
2666             NotifyTransactionChanged(this, hashTx, CT_UPDATED);
2667     }
2668 }
2669
2670 void CWallet::GetKeyBirthTimes(std::map<CKeyID, int64> &mapKeyBirth) const {
2671     mapKeyBirth.clear();
2672
2673     // get birth times for keys with metadata
2674     for (std::map<CKeyID, CKeyMetadata>::const_iterator it = mapKeyMetadata.begin(); it != mapKeyMetadata.end(); it++)
2675         if (it->second.nCreateTime)
2676             mapKeyBirth[it->first] = it->second.nCreateTime;
2677
2678     // map in which we'll infer heights of other keys
2679     CBlockIndex *pindexMax = FindBlockByHeight(std::max(0, nBestHeight - 144)); // the tip can be reorganised; use a 144-block safety margin
2680     std::map<CKeyID, CBlockIndex*> mapKeyFirstBlock;
2681     std::set<CKeyID> setKeys;
2682     GetKeys(setKeys);
2683     BOOST_FOREACH(const CKeyID &keyid, setKeys) {
2684         if (mapKeyBirth.count(keyid) == 0)
2685             mapKeyFirstBlock[keyid] = pindexMax;
2686     }
2687     setKeys.clear();
2688
2689     // if there are no such keys, we're done
2690     if (mapKeyFirstBlock.empty())
2691         return;
2692
2693     // find first block that affects those keys, if there are any left
2694     std::vector<CKeyID> vAffected;
2695     for (std::map<uint256, CWalletTx>::const_iterator it = mapWallet.begin(); it != mapWallet.end(); it++) {
2696         // iterate over all wallet transactions...
2697         const CWalletTx &wtx = (*it).second;
2698         std::map<uint256, CBlockIndex*>::const_iterator blit = mapBlockIndex.find(wtx.hashBlock);
2699         if (blit != mapBlockIndex.end() && blit->second->IsInMainChain()) {
2700             // ... which are already in a block
2701             int nHeight = blit->second->nHeight;
2702             BOOST_FOREACH(const CTxOut &txout, wtx.vout) {
2703                 // iterate over all their outputs
2704                 ::ExtractAffectedKeys(*this, txout.scriptPubKey, vAffected);
2705                 BOOST_FOREACH(const CKeyID &keyid, vAffected) {
2706                     // ... and all their affected keys
2707                     std::map<CKeyID, CBlockIndex*>::iterator rit = mapKeyFirstBlock.find(keyid);
2708                     if (rit != mapKeyFirstBlock.end() && nHeight < rit->second->nHeight)
2709                         rit->second = blit->second;
2710                 }
2711                 vAffected.clear();
2712             }
2713         }
2714     }
2715
2716     // Extract block timestamps for those keys
2717     for (std::map<CKeyID, CBlockIndex*>::const_iterator it = mapKeyFirstBlock.begin(); it != mapKeyFirstBlock.end(); it++)
2718         mapKeyBirth[it->first] = it->second->nTime - 7200; // block times can be 2h off
2719 }