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