e039091ce50661ebd21625c6e00c2984172aca85
[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     auto 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     auto pubkey = key.GetPubKey();
58
59     // Create new metadata
60     auto nCreationTime = GetTime();
61     mapKeyMetadata[CBitcoinAddress(pubkey.GetID())] = CKeyMetadata(nCreationTime);
62     if (!nTimeFirstKey || nCreationTime < nTimeFirstKey)
63         nTimeFirstKey = nCreationTime;
64
65     if (!AddKey(key))
66         throw 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     auto nCreationTime = GetTime();
83     mapKeyMetadata[CBitcoinAddress(keyView.GetMalleablePubKey())] = CKeyMetadata(nCreationTime);
84     if (!nTimeFirstKey || nCreationTime < nTimeFirstKey)
85         nTimeFirstKey = nCreationTime;
86
87     if (!AddKey(mKey))
88         throw runtime_error("CWallet::GenerateNewMalleableKey() : AddKey failed");
89     return CMalleableKeyView(mKey);
90 }
91
92 bool CWallet::AddKey(const CKey& key)
93 {
94     auto 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     auto keyView = CMalleableKeyView(mKey);
107     auto 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 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         auto 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         for(const auto& 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         for(auto& 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                 auto 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     auto nStartTime = GetTimeMillis();
384     crypter.SetKeyFromPassphrase(strWalletPassphrase, kMasterKey.vchSalt, 25000, kMasterKey.nDerivationMethod);
385     auto 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         for(const auto& 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             auto 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             auto mi2 = mapMalleableKeys.begin();
496             while (mi2 != mapMalleableKeys.end())
497             {
498                 const auto &vchSecretH = mi2->second;
499                 const auto &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             auto 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 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(list<CAccountingEntry>& acentries, 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 (auto it = mapWallet.begin(); it != mapWallet.end(); ++it)
563     {
564         CWalletTx* wtx = &((*it).second);
565         txOrdered.insert({ wtx->nOrderPos, { wtx, (CAccountingEntry*)0 } });
566     }
567     acentries.clear();
568     walletdb.ListAccountCreditDebit(strAccount, acentries);
569     for(auto& entry : acentries)
570     {
571         txOrdered.insert({ entry.nOrderPos, { (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         for(const auto& txin : tx.vin)
585         {
586             auto mi = mapWallet.find(txin.prevout.hash);
587             if (mi != mapWallet.end())
588             {
589                 auto& 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             auto hash = tx.GetHash();
606             auto mi = mapWallet.find(hash);
607             auto& wtx = (*mi).second;
608
609             for(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         for(auto& item : mapWallet)
629             item.second.MarkDirty();
630     }
631 }
632
633 bool CWallet::AddToWallet(const CWalletTx& wtxIn)
634 {
635     auto hash = wtxIn.GetHash();
636     {
637         LOCK(cs_wallet);
638         // Inserts only if not already there, returns tx inserted or tx found
639         auto ret = mapWallet.insert({ hash, wtxIn });
640         auto& 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                         list<CAccountingEntry> acentries;
659                         auto txOrdered = OrderedTxItems(acentries);
660                         for (auto 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 = max(latestEntry, 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         for(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         auto 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     auto 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 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 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 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 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 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 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     for(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     for(const CTxIn& txin :  tx.vin)
955     {
956         nDebit += GetDebit(txin, filter);
957         if (!MoneyRange(nDebit))
958             throw 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     for(const CTxOut& txout :  tx.vout)
967     {
968         nCredit += GetCredit(txout, filter);
969         if (!MoneyRange(nCredit))
970             throw 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     for(const CTxOut& txout :  tx.vout)
979     {
980         nChange += GetChange(txout);
981         if (!MoneyRange(nChange))
982             throw 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     for(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 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 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     auto nDebit = GetDebit(filter);
1250     if (nDebit > 0) // debit>0 means we signed/sent this transaction
1251     {
1252         auto nValueOut = GetValueOut();
1253         nFee = nDebit - nValueOut;
1254     }
1255
1256     // Sent/received.
1257     for(const CTxOut& txout :  vout)
1258     {
1259         auto 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({ 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({ 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         for(const auto& s : listSent)
1309             nSent += s.second;
1310         nFee = allFee;
1311     }
1312     {
1313         LOCK(pwallet->cs_wallet);
1314         for(const auto& 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         for(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                 auto 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                     for(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                     for(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             for(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         for(auto& item : mapWallet)
1439         {
1440             auto& 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     auto hash = GetHash();
1491     if (IsCoinBase() || IsCoinStake() || txdb.ContainsTx(hash) || !InMempool())
1492         return false;
1493
1494     for(auto it = vtxPrev.begin(); it != vtxPrev.end(); it++)
1495     {
1496         const CMerkleTx& tx = *it;
1497         auto 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 vector<uint256> CWallet::ResendWalletTransactionsBefore(int64_t nTime)
1518 {
1519     vector<uint256> result;
1520
1521     LOCK(cs_wallet);
1522     // Sort them in chronological order
1523     map<unsigned int, CWalletTx*> mapSorted;
1524     for(auto& item : mapWallet)
1525     {
1526         auto& wtx = item.second;
1527         // Don't rebroadcast if newer than nTime:
1528         if (wtx.nTimeReceived > nTime)
1529             continue;
1530         mapSorted.insert({ wtx.nTimeReceived, &wtx });
1531     }
1532     for(auto& item : mapSorted)
1533     {
1534         auto& 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     auto 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     auto 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 (auto 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 (auto 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 (auto 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 (auto 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 (auto 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 (auto 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 (auto 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                 auto 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 (auto 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                 auto 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 (auto 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 (auto 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 (auto 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 (auto 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 = 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     for(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         auto n = pcoin->vout[i].nValue;
1851         auto coin = make_pair(n, make_pair(pcoin, i));
1852
1853         if (n == nTargetValue)
1854         {
1855             setCoinsRet.insert(coin.second);
1856             nValueRet += coin.first;
1857             return true;
1858         }
1859         else if (n < nTargetValue + CENT)
1860         {
1861             vValue.push_back(coin);
1862             nTotalLower += n;
1863         }
1864         else if (n < coinLowestLarger.first)
1865         {
1866             coinLowestLarger = coin;
1867         }
1868     }
1869
1870     if (nTotalLower == nTargetValue)
1871     {
1872         for (unsigned int i = 0; i < vValue.size(); ++i)
1873         {
1874             setCoinsRet.insert(vValue[i].second);
1875             nValueRet += vValue[i].first;
1876         }
1877         return true;
1878     }
1879
1880     if (nTotalLower < nTargetValue)
1881     {
1882         if (coinLowestLarger.second.first == NULL)
1883             return false;
1884         setCoinsRet.insert(coinLowestLarger.second);
1885         nValueRet += coinLowestLarger.first;
1886         return true;
1887     }
1888
1889     // Solve subset sum by stochastic approximation
1890     sort(vValue.rbegin(), vValue.rend(), CompareValueOnly());
1891     vector<char> vfBest;
1892     int64_t nBest;
1893
1894     ApproximateBestSubset(vValue, nTotalLower, nTargetValue, vfBest, nBest, 1000);
1895     if (nBest != nTargetValue && nTotalLower >= nTargetValue + CENT)
1896         ApproximateBestSubset(vValue, nTotalLower, nTargetValue + CENT, vfBest, nBest, 1000);
1897
1898     // If we have a bigger coin and (either the stochastic approximation didn't find a good solution,
1899     //                                   or the next bigger coin is closer), return the bigger coin
1900     if (coinLowestLarger.second.first &&
1901         ((nBest != nTargetValue && nBest < nTargetValue + CENT) || coinLowestLarger.first <= nBest))
1902     {
1903         setCoinsRet.insert(coinLowestLarger.second);
1904         nValueRet += coinLowestLarger.first;
1905     }
1906     else {
1907         for (unsigned int i = 0; i < vValue.size(); i++)
1908             if (vfBest[i])
1909             {
1910                 setCoinsRet.insert(vValue[i].second);
1911                 nValueRet += vValue[i].first;
1912             }
1913
1914         if (fDebug && GetBoolArg("-printpriority"))
1915         {
1916             //// debug print
1917             printf("SelectCoins() best subset: ");
1918             for (unsigned int i = 0; i < vValue.size(); i++)
1919                 if (vfBest[i])
1920                     printf("%s ", FormatMoney(vValue[i].first).c_str());
1921             printf("total %s\n", FormatMoney(nBest).c_str());
1922         }
1923     }
1924
1925     return true;
1926 }
1927
1928 bool CWallet::SelectCoins(int64_t nTargetValue, unsigned int nSpendTime, set<pair<const CWalletTx*,unsigned int> >& setCoinsRet, int64_t& nValueRet, const CCoinControl* coinControl) const
1929 {
1930     vector<COutput> vCoins;
1931     AvailableCoins(vCoins, true, coinControl);
1932
1933     // coin control -> return all selected outputs (we want all selected to go into the transaction for sure)
1934     if (coinControl && coinControl->HasSelected())
1935     {
1936         for(const COutput& out :  vCoins)
1937         {
1938             if(!out.fSpendable)
1939                 continue;
1940             nValueRet += out.tx->vout[out.i].nValue;
1941             setCoinsRet.insert({ out.tx, out.i });
1942         }
1943         return (nValueRet >= nTargetValue);
1944     }
1945
1946     return (SelectCoinsMinConf(nTargetValue, nSpendTime, 1, 6, vCoins, setCoinsRet, nValueRet) ||
1947             SelectCoinsMinConf(nTargetValue, nSpendTime, 1, 1, vCoins, setCoinsRet, nValueRet) ||
1948             SelectCoinsMinConf(nTargetValue, nSpendTime, 0, 1, vCoins, setCoinsRet, nValueRet));
1949 }
1950
1951 // Select some coins without random shuffle or best subset approximation
1952 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
1953 {
1954     vector<COutput> vCoins;
1955     AvailableCoinsMinConf(vCoins, nMinConf, nMinValue, nMaxValue);
1956
1957     setCoinsRet.clear();
1958     nValueRet = 0;
1959
1960     for(COutput output :  vCoins)
1961     {
1962         if(!output.fSpendable)
1963             continue;
1964         const CWalletTx *pcoin = output.tx;
1965         int i = output.i;
1966
1967         // Ignore immature coins
1968         if (pcoin->GetBlocksToMaturity() > 0)
1969             continue;
1970
1971         // Stop if we've chosen enough inputs
1972         if (nValueRet >= nTargetValue)
1973             break;
1974
1975         // Follow the timestamp rules
1976         if (pcoin->nTime > nSpendTime)
1977             continue;
1978
1979         auto n = pcoin->vout[i].nValue;
1980         auto coin = make_pair(n, make_pair(pcoin, i));
1981
1982         if (n >= nTargetValue)
1983         {
1984             // If input value is greater or equal to target then simply insert
1985             //    it into the current subset and exit
1986             setCoinsRet.insert(coin.second);
1987             nValueRet += coin.first;
1988             break;
1989         }
1990         else if (n < nTargetValue + CENT)
1991         {
1992             setCoinsRet.insert(coin.second);
1993             nValueRet += coin.first;
1994         }
1995     }
1996
1997     return true;
1998 }
1999
2000 bool CWallet::CreateTransaction(const vector<pair<CScript, int64_t> >& vecSend, CWalletTx& wtxNew, CReserveKey& reservekey, int64_t& nFeeRet, const CCoinControl* coinControl)
2001 {
2002     int64_t nValue = 0;
2003     for(auto& s : vecSend)
2004     {
2005         if (nValue < 0)
2006             return false;
2007         nValue += s.second;
2008     }
2009     if (vecSend.empty() || nValue < 0)
2010         return false;
2011
2012     wtxNew.BindWallet(this);
2013
2014     {
2015         LOCK2(cs_main, cs_wallet);
2016         // txdb must be opened before the mapWallet lock
2017         CTxDB txdb("r");
2018         {
2019             nFeeRet = nTransactionFee;
2020             for ( ; ; )
2021             {
2022                 wtxNew.vin.clear();
2023                 wtxNew.vout.clear();
2024                 wtxNew.fFromMe = true;
2025
2026                 auto nTotalValue = nValue + nFeeRet;
2027                 double dPriority = 0;
2028                 // vouts to the payees
2029                 for(const auto& s : vecSend)
2030                     wtxNew.vout.push_back(CTxOut(s.second, s.first));
2031
2032                 // Choose coins to use
2033                 set<pair<const CWalletTx*,unsigned int> > setCoins;
2034                 int64_t nValueIn = 0;
2035                 if (!SelectCoins(nTotalValue, wtxNew.nTime, setCoins, nValueIn, coinControl))
2036                     return false;
2037                 for(auto& pcoin : setCoins)
2038                 {
2039                     auto nCredit = pcoin.first->vout[pcoin.second].nValue;
2040                     dPriority += (double)nCredit * pcoin.first->GetDepthInMainChain();
2041                 }
2042
2043                 auto nChange = nValueIn - nValue - nFeeRet;
2044                 if (nChange > 0)
2045                 {
2046                     // Fill a vout to ourself
2047                     // TODO: pass in scriptChange instead of reservekey so
2048                     // change transaction isn't always pay-to-bitcoin-address
2049                     CScript scriptChange;
2050
2051                     // coin control: send change to custom address
2052                     if (coinControl && coinControl->destChange.IsValid())
2053                         scriptChange.SetAddress(coinControl->destChange);
2054
2055                     // no coin control: send change to newly generated address
2056                     else
2057                     {
2058                         // Note: We use a new key here to keep it from being obvious which side is the change.
2059                         //  The drawback is that by not reusing a previous key, the change may be lost if a
2060                         //  backup is restored, if the backup doesn't have the new private key for the change.
2061                         //  If we reused the old key, it would be possible to add code to look for and
2062                         //  rediscover unknown transactions that were written with keys of ours to recover
2063                         //  post-backup change.
2064
2065                         // Reserve a new key pair from key pool
2066                         auto vchPubKey = reservekey.GetReservedKey();
2067
2068                         scriptChange.SetDestination(vchPubKey.GetID());
2069                     }
2070
2071                     // Insert change txn at random position:
2072                     auto position = wtxNew.vout.begin()+GetRandInt(wtxNew.vout.size());
2073                     wtxNew.vout.insert(position, CTxOut(nChange, scriptChange));
2074                 }
2075                 else
2076                     reservekey.ReturnKey();
2077
2078                 // Fill vin
2079                 for(const auto& coin : setCoins)
2080                     wtxNew.vin.push_back(CTxIn(coin.first->GetHash(),coin.second));
2081
2082                 // Sign
2083                 int nIn = 0;
2084                 for(const auto& coin : setCoins)
2085                     if (!SignSignature(*this, *coin.first, wtxNew, nIn++))
2086                         return false;
2087
2088                 // Limit size
2089                 unsigned int nBytes = ::GetSerializeSize(*(CTransaction*)&wtxNew, SER_NETWORK, PROTOCOL_VERSION);
2090                 if (nBytes >= MAX_BLOCK_SIZE_GEN/5)
2091                     return false;
2092                 dPriority /= nBytes;
2093
2094                 // Check that enough fee is included
2095                 bool fAllowFree = CTransaction::AllowFree(dPriority);
2096                 auto nPayFee = nTransactionFee * (1 + (int64_t)nBytes / 1000);
2097                 auto nMinFee = wtxNew.GetMinFee(1, fAllowFree, GMF_SEND, nBytes);
2098
2099                 if (nFeeRet < max(nPayFee, nMinFee))
2100                 {
2101                     nFeeRet = max(nPayFee, nMinFee);
2102                     continue;
2103                 }
2104
2105                 // Fill vtxPrev by copying from previous transactions vtxPrev
2106                 wtxNew.AddSupportingTransactions(txdb);
2107                 wtxNew.fTimeReceivedIsTxTime = true;
2108
2109                 break;
2110             }
2111         }
2112     }
2113     return true;
2114 }
2115
2116 bool CWallet::CreateTransaction(CScript scriptPubKey, int64_t nValue, CWalletTx& wtxNew, CReserveKey& reservekey, int64_t& nFeeRet, const CCoinControl* coinControl)
2117 {
2118     vector< pair<CScript, int64_t> > vecSend;
2119     vecSend.push_back({ scriptPubKey, nValue });
2120     return CreateTransaction(vecSend, wtxNew, reservekey, nFeeRet, coinControl);
2121 }
2122
2123 void CWallet::GetStakeWeightFromValue(const int64_t& nTime, const int64_t& nValue, uint64_t& nWeight)
2124 {
2125     auto nTimeWeight = GetWeight(nTime, GetTime());
2126
2127     // If time weight is lower or equal to zero then weight is zero.
2128     if (nTimeWeight <= 0)
2129     {
2130         nWeight = 0;
2131         return;
2132     }
2133
2134     auto bnCoinDayWeight = CBigNum(nValue) * nTimeWeight / COIN / nOneDay;
2135     nWeight = bnCoinDayWeight.getuint64();
2136 }
2137
2138 bool CWallet::MergeCoins(const int64_t& nAmount, const int64_t& nMinValue, const int64_t& nOutputValue, list<uint256>& listMerged)
2139 {
2140     auto nBalance = GetBalance();
2141
2142     if (nAmount > nBalance)
2143         return false;
2144
2145     listMerged.clear();
2146     int64_t nValueIn = 0;
2147     set<pair<const CWalletTx*,unsigned int> > setCoins;
2148
2149     // Simple coins selection - no randomization
2150     if (!SelectCoinsSimple(nAmount, nMinValue, nOutputValue, GetTime(), 1, setCoins, nValueIn))
2151         return false;
2152
2153     if (setCoins.empty())
2154         return false;
2155
2156     CWalletTx wtxNew;
2157     vector<const CWalletTx*> vwtxPrev;
2158
2159     // Reserve a new key pair from key pool
2160     CReserveKey reservekey(this);
2161     auto vchPubKey = reservekey.GetReservedKey();
2162
2163     // Output script
2164     CScript scriptOutput;
2165     scriptOutput.SetDestination(vchPubKey.GetID());
2166
2167     // Insert output
2168     wtxNew.vout.push_back(CTxOut(0, scriptOutput));
2169
2170     double dWeight = 0;
2171     for(auto& pcoin : setCoins)
2172     {
2173         auto nCredit = pcoin.first->vout[pcoin.second].nValue;
2174
2175         // Add current coin to inputs list and add its credit to transaction output
2176         wtxNew.vin.push_back(CTxIn(pcoin.first->GetHash(), pcoin.second));
2177         wtxNew.vout[0].nValue += nCredit;
2178         vwtxPrev.push_back(pcoin.first);
2179
2180 /*
2181         // Replaced with estimation for performance purposes
2182
2183         for (unsigned int i = 0; i < wtxNew.vin.size(); i++) {
2184             const CWalletTx *txin = vwtxPrev[i];
2185
2186             // Sign scripts to get actual transaction size for fee calculation
2187             if (!SignSignature(*this, *txin, wtxNew, i))
2188                 return false;
2189         }
2190 */
2191
2192         // Assuming that average scriptsig size is 110 bytes
2193         auto nBytes = ::GetSerializeSize(*(CTransaction*)&wtxNew, SER_NETWORK, PROTOCOL_VERSION) + wtxNew.vin.size() * 110;
2194         dWeight += (double)nCredit * pcoin.first->GetDepthInMainChain();
2195
2196         double dFinalPriority = dWeight /= nBytes;
2197         bool fAllowFree = CTransaction::AllowFree(dFinalPriority);
2198
2199         // Get actual transaction fee according to its estimated size and priority
2200         auto nMinFee = wtxNew.GetMinFee(1, fAllowFree, GMF_SEND, nBytes);
2201
2202         // Prepare transaction for commit if sum is enough ot its size is too big
2203         if (nBytes >= MAX_BLOCK_SIZE_GEN/6 || wtxNew.vout[0].nValue >= nOutputValue)
2204         {
2205             wtxNew.vout[0].nValue -= nMinFee; // Set actual fee
2206
2207             for (unsigned int i = 0; i < wtxNew.vin.size(); i++) {
2208                 const CWalletTx *txin = vwtxPrev[i];
2209
2210                 // Sign all scripts
2211                 if (!SignSignature(*this, *txin, wtxNew, i))
2212                     return false;
2213             }
2214
2215             // Try to commit, return false on failure
2216             if (!CommitTransaction(wtxNew, reservekey))
2217                 return false;
2218
2219             listMerged.push_back(wtxNew.GetHash()); // Add to hashes list
2220
2221             dWeight = 0;  // Reset all temporary values
2222             vwtxPrev.clear();
2223             wtxNew.SetNull();
2224             wtxNew.vout.push_back(CTxOut(0, scriptOutput));
2225         }
2226     }
2227
2228     // Create transactions if there are some unhandled coins left
2229     if (wtxNew.vout[0].nValue > 0) {
2230         int64_t nBytes = ::GetSerializeSize(*(CTransaction*)&wtxNew, SER_NETWORK, PROTOCOL_VERSION) + wtxNew.vin.size() * 110;
2231
2232         double dFinalPriority = dWeight /= nBytes;
2233         bool fAllowFree = CTransaction::AllowFree(dFinalPriority);
2234
2235         // Get actual transaction fee according to its size and priority
2236         auto nMinFee = wtxNew.GetMinFee(1, fAllowFree, GMF_SEND, nBytes);
2237
2238         wtxNew.vout[0].nValue -= nMinFee; // Set actual fee
2239
2240         if (wtxNew.vout[0].nValue <= 0)
2241             return false;
2242
2243         for (unsigned int i = 0; i < wtxNew.vin.size(); i++) {
2244             const CWalletTx *txin = vwtxPrev[i];
2245
2246             // Sign all scripts again
2247             if (!SignSignature(*this, *txin, wtxNew, i))
2248                 return false;
2249         }
2250
2251         // Try to commit, return false on failure
2252         if (!CommitTransaction(wtxNew, reservekey))
2253             return false;
2254
2255         listMerged.push_back(wtxNew.GetHash()); // Add to hashes list
2256     }
2257
2258     return true;
2259 }
2260
2261 bool CWallet::CreateCoinStake(uint256 &hashTx, uint32_t nOut, uint32_t nGenerationTime, uint32_t nBits, CTransaction &txNew, CKey& key)
2262 {
2263     CWalletTx wtx;
2264     if (!GetTransaction(hashTx, wtx))
2265         return error("Transaction %s is not found\n", hashTx.GetHex().c_str());
2266
2267     vector<valtype> vSolutions;
2268     txnouttype whichType;
2269     CScript scriptPubKeyOut;
2270     auto scriptPubKeyKernel = wtx.vout[nOut].scriptPubKey;
2271     if (!Solver(scriptPubKeyKernel, whichType, vSolutions))
2272         return error("CreateCoinStake : failed to parse kernel\n");
2273
2274     if (fDebug && GetBoolArg("-printcoinstake"))
2275         printf("CreateCoinStake : parsed kernel type=%d\n", whichType);
2276
2277     if (whichType != TX_PUBKEY && whichType != TX_PUBKEYHASH)
2278         return error("CreateCoinStake : no support for kernel type=%d\n", whichType);
2279
2280     if (whichType == TX_PUBKEYHASH) // pay to address type
2281     {
2282         // convert to pay to public key type
2283         if (!GetKey(uint160(vSolutions[0]), key))
2284             return error("CreateCoinStake : failed to get key for kernel type=%d\n", whichType);
2285
2286         scriptPubKeyOut << key.GetPubKey() << OP_CHECKSIG;
2287     }
2288     if (whichType == TX_PUBKEY)
2289     {
2290         auto& vchPubKey = vSolutions[0];
2291         if (!GetKey(Hash160(vchPubKey), key))
2292             return error("CreateCoinStake : failed to get key for kernel type=%d\n", whichType);
2293         if (key.GetPubKey() != vchPubKey)
2294             return error("CreateCoinStake : invalid key for kernel type=%d\n", whichType); // keys mismatch
2295         scriptPubKeyOut = scriptPubKeyKernel;
2296     }
2297
2298     // The following combine threshold is important to security
2299     // Should not be adjusted if you don't understand the consequences
2300     auto nCombineThreshold = GetProofOfWorkReward(GetLastBlockIndex(pindexBest, false)->nBits) / 3;
2301
2302     auto nBalance = GetBalance();
2303     auto nCredit = wtx.vout[nOut].nValue;
2304
2305     txNew.vin.clear();
2306     txNew.vout.clear();
2307
2308     // List of constake dependencies
2309     vector<const CWalletTx*> vwtxPrev;
2310     vwtxPrev.push_back(&wtx);
2311
2312     // Set generation time, and kernel input
2313     txNew.nTime = nGenerationTime;
2314     txNew.vin.push_back(CTxIn(hashTx, nOut));
2315
2316     // Mark coin stake transaction with empty vout[0]
2317     CScript scriptEmpty;
2318     scriptEmpty.clear();
2319     txNew.vout.push_back(CTxOut(0, scriptEmpty));
2320
2321     if (fDebug && GetBoolArg("-printcoinstake"))
2322         printf("CreateCoinStake : added kernel type=%d\n", whichType);
2323
2324     int64_t nValueIn = 0;
2325     CoinsSet setCoins;
2326     if (!SelectCoinsSimple(nBalance - nReserveBalance, MIN_TX_FEE, MAX_MONEY, nGenerationTime, nCoinbaseMaturity * 10, setCoins, nValueIn))
2327         return false;
2328
2329     if (setCoins.empty())
2330         return false;
2331
2332     bool fDontSplitCoins = false;
2333     if (GetWeight((int64_t)wtx.nTime, (int64_t)nGenerationTime) == nStakeMaxAge)
2334     {
2335         // Only one output for old kernel inputs
2336         txNew.vout.push_back(CTxOut(0, scriptPubKeyOut));
2337
2338         // Iterate through set of (wtx*, nout) in order to find some additional inputs for our new coinstake transaction.
2339         //
2340         // * Value is higher than 0.01 NVC;
2341         // * Only add inputs of the same key/address as kernel;
2342         // * Input hash and kernel parent hash should be different.
2343         for(auto pcoin = setCoins.begin(); pcoin != setCoins.end(); pcoin++)
2344         {
2345             // Stop adding more inputs if already too many inputs
2346             if (txNew.vin.size() >= 100)
2347                 break;
2348             // Stop adding more inputs if value is already pretty significant
2349             if (nCredit > nCombineThreshold)
2350                 break;
2351             // Stop adding inputs if reached reserve limit
2352             if (nCredit + pcoin->first->vout[pcoin->second].nValue > nBalance - nReserveBalance)
2353                 break;
2354
2355             auto nTimeWeight = GetWeight((int64_t)pcoin->first->nTime, (int64_t)nGenerationTime);
2356
2357             // Do not add input that is still too young
2358             if (nTimeWeight < nStakeMaxAge)
2359                 continue;
2360             // Do not add input if key/address is not the same as kernel
2361             if (pcoin->first->vout[pcoin->second].scriptPubKey != scriptPubKeyKernel && pcoin->first->vout[pcoin->second].scriptPubKey != txNew.vout[1].scriptPubKey)
2362                 continue;
2363             // Do not add input if parents are the same
2364             if (pcoin->first->GetHash() != txNew.vin[0].prevout.hash)
2365                 continue;
2366             // Do not add additional significant input
2367             if (pcoin->first->vout[pcoin->second].nValue > nCombineThreshold)
2368                 continue;
2369
2370             txNew.vin.push_back(CTxIn(pcoin->first->GetHash(), pcoin->second));
2371             nCredit += pcoin->first->vout[pcoin->second].nValue;
2372             vwtxPrev.push_back(pcoin->first);
2373         }
2374
2375         fDontSplitCoins = true;
2376     }
2377     else
2378     {
2379         auto nSplitThreshold = GetArg("-splitthreshold", nCombineThreshold);
2380
2381         if (fDebug && GetBoolArg("-printcoinstake"))
2382             printf("CreateCoinStake : nSplitThreshold=%" PRId64 "\n", nSplitThreshold);
2383
2384         if (nCredit > nSplitThreshold)
2385         {
2386             // Split stake input if credit is lower than combine threshold and maximum weight isn't reached yet
2387             txNew.vout.push_back(CTxOut(0, scriptPubKeyOut));
2388             txNew.vout.push_back(CTxOut(0, scriptPubKeyOut));
2389
2390             if (fDebug && GetBoolArg("-printcoinstake"))
2391                 printf("CreateCoinStake : splitting coinstake\n");
2392         }
2393         else
2394         {
2395             txNew.vout.push_back(CTxOut(0, scriptPubKeyOut));
2396             fDontSplitCoins = true;
2397         }
2398     }
2399
2400     // Calculate coin age reward
2401     uint64_t nCoinAge;
2402     CTxDB txdb("r");
2403     if (!txNew.GetCoinAge(txdb, nCoinAge))
2404         return error("CreateCoinStake : failed to calculate coin age\n");
2405     nCredit += GetProofOfStakeReward(nCoinAge, nBits, nGenerationTime);
2406
2407     int64_t nMinFee = 0;
2408     for ( ; ; )
2409     {
2410         // Set output amount
2411         if (fDontSplitCoins)
2412             txNew.vout[1].nValue = nCredit - nMinFee;
2413         else
2414         {
2415             txNew.vout[1].nValue = ((nCredit - nMinFee) / 2 / CENT) * CENT;
2416             txNew.vout[2].nValue = nCredit - nMinFee - txNew.vout[1].nValue;
2417         }
2418
2419         // Sign
2420         int nIn = 0;
2421         for(const CWalletTx* pcoin :  vwtxPrev)
2422         {
2423             if (!SignSignature(*this, *pcoin, txNew, nIn++))
2424                 return error("CreateCoinStake : failed to sign coinstake\n");
2425         }
2426
2427         // Limit size
2428         unsigned int nBytes = ::GetSerializeSize(txNew, SER_NETWORK, PROTOCOL_VERSION);
2429         if (nBytes >= MAX_BLOCK_SIZE_GEN/5)
2430             return error("CreateCoinStake : exceeded coinstake size limit\n");
2431
2432         // Check enough fee is paid
2433         if (nMinFee < txNew.GetMinFee(1, false, GMF_BLOCK, nBytes) - CENT)
2434         {
2435             nMinFee = txNew.GetMinFee(1, false, GMF_BLOCK, nBytes) - CENT;
2436             continue; // try signing again
2437         }
2438         else
2439         {
2440             if (fDebug && GetBoolArg("-printfee"))
2441                 printf("CreateCoinStake : fee for coinstake %s\n", FormatMoney(nMinFee).c_str());
2442             break;
2443         }
2444     }
2445
2446     // Successfully created coinstake
2447     return true;
2448 }
2449
2450 // Call after CreateTransaction unless you want to abort
2451 bool CWallet::CommitTransaction(CWalletTx& wtxNew, CReserveKey& reservekey)
2452 {
2453     {
2454         printf("CommitTransaction:\n%s", wtxNew.ToString().c_str());
2455
2456         // Track how many getdata requests our transaction gets
2457         mapRequestCount[wtxNew.GetHash()] = 0;
2458
2459         // Try to broadcast before saving
2460         if (!wtxNew.AcceptToMemoryPool())
2461         {
2462             // This must not fail. The transaction has already been signed.
2463             printf("CommitTransaction() : Error: Transaction not valid");
2464             return false;
2465         }
2466
2467         wtxNew.RelayWalletTransaction();
2468
2469         {
2470             LOCK2(cs_main, cs_wallet);
2471
2472             // This is only to keep the database open to defeat the auto-flush for the
2473             // duration of this scope.  This is the only place where this optimization
2474             // maybe makes sense; please don't do it anywhere else.
2475             CWalletDB* pwalletdb = fFileBacked ? new CWalletDB(strWalletFile,"r") : NULL;
2476
2477             // Take key pair from key pool so it won't be used again
2478             reservekey.KeepKey();
2479
2480             // Add tx to wallet, because if it has change it's also ours,
2481             // otherwise just for transaction history.
2482             AddToWallet(wtxNew);
2483
2484             // Mark old coins as spent
2485             for(const CTxIn& txin :  wtxNew.vin)
2486             {
2487                 CWalletTx &coin = mapWallet[txin.prevout.hash];
2488                 coin.BindWallet(this);
2489                 coin.MarkSpent(txin.prevout.n);
2490                 coin.WriteToDisk();
2491                 NotifyTransactionChanged(this, coin.GetHash(), CT_UPDATED);
2492                 vMintingWalletUpdated.push_back(coin.GetHash());
2493             }
2494
2495             if (fFileBacked)
2496                 delete pwalletdb;
2497         }
2498     }
2499     return true;
2500 }
2501
2502
2503
2504
2505 string CWallet::SendMoney(CScript scriptPubKey, int64_t nValue, CWalletTx& wtxNew, bool fAskFee)
2506 {
2507     // Check amount
2508     if (nValue <= 0)
2509         return _("Invalid amount");
2510     if (nValue + nTransactionFee > GetBalance())
2511         return _("Insufficient funds");
2512
2513     CReserveKey reservekey(this);
2514     int64_t nFeeRequired;
2515
2516     if (IsLocked())
2517     {
2518         string strError = _("Error: Wallet locked, unable to create transaction  ");
2519         printf("SendMoney() : %s", strError.c_str());
2520         return strError;
2521     }
2522     if (fWalletUnlockMintOnly)
2523     {
2524         string strError = _("Error: Wallet unlocked for block minting only, unable to create transaction.");
2525         printf("SendMoney() : %s", strError.c_str());
2526         return strError;
2527     }
2528     if (!CreateTransaction(scriptPubKey, nValue, wtxNew, reservekey, nFeeRequired))
2529     {
2530         string strError;
2531         if (nValue + nFeeRequired > GetBalance())
2532             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());
2533         else
2534             strError = _("Error: Transaction creation failed  ");
2535         printf("SendMoney() : %s", strError.c_str());
2536         return strError;
2537     }
2538
2539     if (fAskFee && !uiInterface.ThreadSafeAskFee(nFeeRequired, _("Sending...")))
2540         return "ABORTED";
2541
2542     if (!CommitTransaction(wtxNew, reservekey))
2543         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.");
2544
2545     return "";
2546 }
2547
2548 DBErrors CWallet::LoadWallet(bool& fFirstRunRet)
2549 {
2550     if (!fFileBacked)
2551         return DB_LOAD_OK;
2552     fFirstRunRet = false;
2553     DBErrors nLoadWalletRet = CWalletDB(strWalletFile,"cr+").LoadWallet(this);
2554     if (nLoadWalletRet == DB_NEED_REWRITE)
2555     {
2556         if (CDB::Rewrite(strWalletFile, "\x04pool"))
2557         {
2558             setKeyPool.clear();
2559             // Note: can't top-up keypool here, because wallet is locked.
2560             // User will be prompted to unlock wallet the next operation
2561             // the requires a new key.
2562         }
2563     }
2564
2565     if (nLoadWalletRet != DB_LOAD_OK)
2566         return nLoadWalletRet;
2567     fFirstRunRet = !vchDefaultKey.IsValid();
2568
2569     NewThread(ThreadFlushWalletDB, &strWalletFile);
2570     return DB_LOAD_OK;
2571 }
2572
2573 DBErrors CWallet::ZapWalletTx()
2574 {
2575     if (!fFileBacked)
2576         return DB_LOAD_OK;
2577     DBErrors nZapWalletTxRet = CWalletDB(strWalletFile,"cr+").ZapWalletTx(this);
2578     if (nZapWalletTxRet == DB_NEED_REWRITE)
2579     {
2580         if (CDB::Rewrite(strWalletFile, "\x04pool"))
2581         {
2582             LOCK(cs_wallet);
2583             setKeyPool.clear();
2584             // Note: can't top-up keypool here, because wallet is locked.
2585             // User will be prompted to unlock wallet the next operation
2586             // the requires a new key.
2587         }
2588     }
2589
2590     if (nZapWalletTxRet != DB_LOAD_OK)
2591         return nZapWalletTxRet;
2592
2593     return DB_LOAD_OK;
2594 }
2595
2596 bool CWallet::SetAddressBookName(const CTxDestination& address, const string& strName)
2597 {
2598     return SetAddressBookName(CBitcoinAddress(address), strName);
2599 }
2600
2601 bool CWallet::SetAddressBookName(const CBitcoinAddress& address, const string& strName)
2602 {
2603     auto mi = mapAddressBook.find(address);
2604     mapAddressBook[address] = strName;
2605     NotifyAddressBookChanged(this, address, strName, ::IsMine(*this, address) != MINE_NO, (mi == mapAddressBook.end()) ? CT_NEW : CT_UPDATED);
2606     if (!fFileBacked)
2607         return false;
2608     return CWalletDB(strWalletFile).WriteName(address.ToString(), strName);
2609 }
2610
2611 bool CWallet::DelAddressBookName(const CBitcoinAddress& address)
2612 {
2613     mapAddressBook.erase(address);
2614     NotifyAddressBookChanged(this, address, "", ::IsMine(*this, address) != MINE_NO, CT_DELETED);
2615     if (!fFileBacked)
2616         return false;
2617     return CWalletDB(strWalletFile).EraseName(address.ToString());
2618 }
2619
2620
2621 void CWallet::PrintWallet(const CBlock& block)
2622 {
2623     {
2624         LOCK(cs_wallet);
2625         if (block.IsProofOfStake() && mapWallet.count(block.vtx[1].GetHash()))
2626         {
2627             auto& wtx = mapWallet[block.vtx[1].GetHash()];
2628             printf("    PoS: %d  %d  %" PRId64 "", wtx.GetDepthInMainChain(), wtx.GetBlocksToMaturity(), wtx.GetCredit(MINE_ALL));
2629         }
2630         else if (mapWallet.count(block.vtx[0].GetHash()))
2631         {
2632             auto& wtx = mapWallet[block.vtx[0].GetHash()];
2633             printf("    PoW:  %d  %d  %" PRId64 "", wtx.GetDepthInMainChain(), wtx.GetBlocksToMaturity(), wtx.GetCredit(MINE_ALL));
2634         }
2635     }
2636     printf("\n");
2637 }
2638
2639 bool CWallet::GetTransaction(const uint256 &hashTx, CWalletTx& wtx)
2640 {
2641     {
2642         LOCK(cs_wallet);
2643         auto mi = mapWallet.find(hashTx);
2644         if (mi != mapWallet.end())
2645         {
2646             wtx = (*mi).second;
2647             return true;
2648         }
2649     }
2650     return false;
2651 }
2652
2653 bool CWallet::SetDefaultKey(const CPubKey &vchPubKey)
2654 {
2655     if (fFileBacked)
2656     {
2657         if (!CWalletDB(strWalletFile).WriteDefaultKey(vchPubKey))
2658             return false;
2659     }
2660     vchDefaultKey = vchPubKey;
2661     return true;
2662 }
2663
2664 bool GetWalletFile(CWallet* pwallet, string &strWalletFileOut)
2665 {
2666     if (!pwallet->fFileBacked)
2667         return false;
2668     strWalletFileOut = pwallet->strWalletFile;
2669     return true;
2670 }
2671
2672 //
2673 // Mark old keypool keys as used,
2674 // and generate all new keys
2675 //
2676 bool CWallet::NewKeyPool(unsigned int nSize)
2677 {
2678     {
2679         LOCK(cs_wallet);
2680         CWalletDB walletdb(strWalletFile);
2681         for(int64_t nIndex :  setKeyPool)
2682             walletdb.ErasePool(nIndex);
2683         setKeyPool.clear();
2684
2685         if (IsLocked())
2686             return false;
2687
2688         uint64_t nKeys;
2689         if (nSize > 0)
2690             nKeys = nSize;
2691         else
2692             nKeys = max<uint64_t>(GetArg("-keypool", 100), 0);
2693
2694         for (uint64_t i = 0; i < nKeys; i++)
2695         {
2696             auto nIndex = i+1;
2697             walletdb.WritePool(nIndex, CKeyPool(GenerateNewKey()));
2698             setKeyPool.insert(nIndex);
2699         }
2700         printf("CWallet::NewKeyPool wrote %" PRIu64 " new keys\n", nKeys);
2701     }
2702     return true;
2703 }
2704
2705 bool CWallet::TopUpKeyPool(unsigned int nSize)
2706 {
2707     {
2708         LOCK(cs_wallet);
2709
2710         if (IsLocked())
2711             return false;
2712
2713         CWalletDB walletdb(strWalletFile);
2714
2715         // Top up key pool
2716         uint64_t nTargetSize;
2717         if (nSize > 0)
2718             nTargetSize = nSize;
2719         else
2720             nTargetSize = max<uint64_t>(GetArg("-keypool", 100), 0);
2721
2722         while (setKeyPool.size() < (nTargetSize + 1))
2723         {
2724             uint64_t nEnd = 1;
2725             if (!setKeyPool.empty())
2726                 nEnd = *(--setKeyPool.end()) + 1;
2727             if (!walletdb.WritePool(nEnd, CKeyPool(GenerateNewKey())))
2728                 throw runtime_error("TopUpKeyPool() : writing generated key failed");
2729             setKeyPool.insert(nEnd);
2730             printf("keypool added key %" PRIu64 ", size=%" PRIszu "\n", nEnd, setKeyPool.size());
2731         }
2732     }
2733     return true;
2734 }
2735
2736 void CWallet::ReserveKeyFromKeyPool(int64_t& nIndex, CKeyPool& keypool)
2737 {
2738     nIndex = -1;
2739     keypool.vchPubKey = CPubKey();
2740     {
2741         LOCK(cs_wallet);
2742
2743         if (!IsLocked())
2744             TopUpKeyPool();
2745
2746         // Get the oldest key
2747         if(setKeyPool.empty())
2748             return;
2749
2750         CWalletDB walletdb(strWalletFile);
2751
2752         nIndex = *(setKeyPool.begin());
2753         setKeyPool.erase(setKeyPool.begin());
2754         if (!walletdb.ReadPool(nIndex, keypool))
2755             throw runtime_error("ReserveKeyFromKeyPool() : read failed");
2756         if (!HaveKey(keypool.vchPubKey.GetID()))
2757             throw runtime_error("ReserveKeyFromKeyPool() : unknown key in key pool");
2758         assert(keypool.vchPubKey.IsValid());
2759         if (fDebug && GetBoolArg("-printkeypool"))
2760             printf("keypool reserve %" PRId64 "\n", nIndex);
2761     }
2762 }
2763
2764 int64_t CWallet::AddReserveKey(const CKeyPool& keypool)
2765 {
2766     {
2767         LOCK2(cs_main, cs_wallet);
2768         CWalletDB walletdb(strWalletFile);
2769
2770         int64_t nIndex = 1 + *(--setKeyPool.end());
2771         if (!walletdb.WritePool(nIndex, keypool))
2772             throw runtime_error("AddReserveKey() : writing added key failed");
2773         setKeyPool.insert(nIndex);
2774         return nIndex;
2775     }
2776     return -1;
2777 }
2778
2779 void CWallet::KeepKey(int64_t nIndex)
2780 {
2781     // Remove from key pool
2782     if (fFileBacked)
2783     {
2784         CWalletDB walletdb(strWalletFile);
2785         walletdb.ErasePool(nIndex);
2786     }
2787     if(fDebug)
2788         printf("keypool keep %" PRId64 "\n", nIndex);
2789 }
2790
2791 void CWallet::ReturnKey(int64_t nIndex)
2792 {
2793     // Return to key pool
2794     {
2795         LOCK(cs_wallet);
2796         setKeyPool.insert(nIndex);
2797     }
2798     if(fDebug)
2799         printf("keypool return %" PRId64 "\n", nIndex);
2800 }
2801
2802 bool CWallet::GetKeyFromPool(CPubKey& result, bool fAllowReuse)
2803 {
2804     int64_t nIndex = 0;
2805     CKeyPool keypool;
2806     {
2807         LOCK(cs_wallet);
2808         ReserveKeyFromKeyPool(nIndex, keypool);
2809         if (nIndex == -1)
2810         {
2811             if (fAllowReuse && vchDefaultKey.IsValid())
2812             {
2813                 result = vchDefaultKey;
2814                 return true;
2815             }
2816             if (IsLocked()) return false;
2817             result = GenerateNewKey();
2818             return true;
2819         }
2820         KeepKey(nIndex);
2821         result = keypool.vchPubKey;
2822     }
2823     return true;
2824 }
2825
2826 int64_t CWallet::GetOldestKeyPoolTime()
2827 {
2828     int64_t nIndex = 0;
2829     CKeyPool keypool;
2830     ReserveKeyFromKeyPool(nIndex, keypool);
2831     if (nIndex == -1)
2832         return GetTime();
2833     ReturnKey(nIndex);
2834     return keypool.nTime;
2835 }
2836
2837 map<CBitcoinAddress, int64_t> CWallet::GetAddressBalances()
2838 {
2839     map<CBitcoinAddress, int64_t> balances;
2840
2841     {
2842         LOCK(cs_wallet);
2843         for(auto& walletEntry : mapWallet)
2844         {
2845             CWalletTx *pcoin = &walletEntry.second;
2846
2847             if (!pcoin->IsFinal() || !pcoin->IsTrusted())
2848                 continue;
2849
2850             if ((pcoin->IsCoinBase() || pcoin->IsCoinStake()) && pcoin->GetBlocksToMaturity() > 0)
2851                 continue;
2852
2853             int nDepth = pcoin->GetDepthInMainChain();
2854             if (nDepth < (pcoin->IsFromMe(MINE_ALL) ? 0 : 1))
2855                 continue;
2856
2857             for (unsigned int i = 0; i < pcoin->vout.size(); i++)
2858             {
2859                 CBitcoinAddress addr;
2860                 if (!IsMine(pcoin->vout[i]))
2861                     continue;
2862                 if(!ExtractAddress(*this, pcoin->vout[i].scriptPubKey, addr))
2863                     continue;
2864
2865                 auto n = pcoin->IsSpent(i) ? 0 : pcoin->vout[i].nValue;
2866
2867                 if (!balances.count(addr))
2868                     balances[addr] = 0;
2869                 balances[addr] += n;
2870             }
2871         }
2872     }
2873
2874     return balances;
2875 }
2876
2877 set< set<CBitcoinAddress> > CWallet::GetAddressGroupings()
2878 {
2879     set< set<CBitcoinAddress> > groupings;
2880     set<CBitcoinAddress> grouping;
2881
2882     for(auto& walletEntry : mapWallet)
2883     {
2884         CWalletTx *pcoin = &walletEntry.second;
2885
2886         if (pcoin->vin.size() > 0 && IsMine(pcoin->vin[0]))
2887         {
2888             // group all input addresses with each other
2889             for(CTxIn txin :  pcoin->vin)
2890             {
2891                 CBitcoinAddress address;
2892                 if(!ExtractAddress(*this, mapWallet[txin.prevout.hash].vout[txin.prevout.n].scriptPubKey, address))
2893                     continue;
2894                 grouping.insert(address);
2895             }
2896
2897             // group change with input addresses
2898             for(CTxOut txout :  pcoin->vout)
2899                 if (IsChange(txout))
2900                 {
2901                     auto tx = mapWallet[pcoin->vin[0].prevout.hash];
2902                     CBitcoinAddress txoutAddr;
2903                     if(!ExtractAddress(*this, txout.scriptPubKey, txoutAddr))
2904                         continue;
2905                     grouping.insert(txoutAddr);
2906                 }
2907             groupings.insert(grouping);
2908             grouping.clear();
2909         }
2910
2911         // group lone addrs by themselves
2912         for (unsigned int i = 0; i < pcoin->vout.size(); i++)
2913             if (IsMine(pcoin->vout[i]))
2914             {
2915                 CBitcoinAddress address;
2916                 if(!ExtractAddress(*this, pcoin->vout[i].scriptPubKey, address))
2917                     continue;
2918                 grouping.insert(address);
2919                 groupings.insert(grouping);
2920                 grouping.clear();
2921             }
2922     }
2923
2924     set< set<CBitcoinAddress>* > uniqueGroupings; // a set of pointers to groups of addresses
2925     map< CBitcoinAddress, set<CBitcoinAddress>* > setmap;  // map addresses to the unique group containing it
2926     for(auto& grouping : groupings)
2927     {
2928         // make a set of all the groups hit by this new group
2929         set< set<CBitcoinAddress>* > hits;
2930         map< CBitcoinAddress, set<CBitcoinAddress>* >::iterator it;
2931         for(auto& address : grouping)
2932             if ((it = setmap.find(address)) != setmap.end())
2933                 hits.insert((*it).second);
2934
2935         // merge all hit groups into a new single group and delete old groups
2936         set<CBitcoinAddress>* merged = new set<CBitcoinAddress>(grouping);
2937         for(auto hit : hits)
2938         {
2939             merged->insert(hit->begin(), hit->end());
2940             uniqueGroupings.erase(hit);
2941             delete hit;
2942         }
2943         uniqueGroupings.insert(merged);
2944
2945         // update setmap
2946         for(CBitcoinAddress element :  *merged)
2947             setmap[element] = merged;
2948     }
2949
2950     set< set<CBitcoinAddress> > ret;
2951     for(auto uniqueGrouping : uniqueGroupings)
2952     {
2953         ret.insert(*uniqueGrouping);
2954         delete uniqueGrouping;
2955     }
2956
2957     return ret;
2958 }
2959
2960 // ppcoin: check 'spent' consistency between wallet and txindex
2961 // ppcoin: fix wallet spent state according to txindex
2962 void CWallet::FixSpentCoins(int& nMismatchFound, int64_t& nBalanceInQuestion, bool fCheckOnly)
2963 {
2964     nMismatchFound = 0;
2965     nBalanceInQuestion = 0;
2966
2967     LOCK(cs_wallet);
2968     vector<CWalletTx*> vCoins;
2969     vCoins.reserve(mapWallet.size());
2970     for (auto it = mapWallet.begin(); it != mapWallet.end(); ++it)
2971         vCoins.push_back(&(*it).second);
2972
2973     CTxDB txdb("r");
2974     for(auto pcoin : vCoins)
2975     {
2976         // Find the corresponding transaction index
2977         CTxIndex txindex;
2978         if (!txdb.ReadTxIndex(pcoin->GetHash(), txindex))
2979             continue;
2980         for (unsigned int n=0; n < pcoin->vout.size(); n++)
2981         {
2982             if (IsMine(pcoin->vout[n]) && pcoin->IsSpent(n) && (txindex.vSpent.size() <= n || txindex.vSpent[n].IsNull()))
2983             {
2984                 printf("FixSpentCoins found lost coin %sppc %s[%u], %s\n",
2985                     FormatMoney(pcoin->vout[n].nValue).c_str(), pcoin->GetHash().ToString().c_str(), n, fCheckOnly? "repair not attempted" : "repairing");
2986                 nMismatchFound++;
2987                 nBalanceInQuestion += pcoin->vout[n].nValue;
2988                 if (!fCheckOnly)
2989                 {
2990                     pcoin->MarkUnspent(n);
2991                     pcoin->WriteToDisk();
2992                 }
2993             }
2994             else if (IsMine(pcoin->vout[n]) && !pcoin->IsSpent(n) && (txindex.vSpent.size() > n && !txindex.vSpent[n].IsNull()))
2995             {
2996                 printf("FixSpentCoins found spent coin %sppc %s[%u], %s\n",
2997                     FormatMoney(pcoin->vout[n].nValue).c_str(), pcoin->GetHash().ToString().c_str(), n, fCheckOnly? "repair not attempted" : "repairing");
2998                 nMismatchFound++;
2999                 nBalanceInQuestion += pcoin->vout[n].nValue;
3000                 if (!fCheckOnly)
3001                 {
3002                     pcoin->MarkSpent(n);
3003                     pcoin->WriteToDisk();
3004                 }
3005             }
3006
3007         }
3008
3009         if(IsMine((CTransaction)*pcoin) && (pcoin->IsCoinBase() || pcoin->IsCoinStake()) && pcoin->GetDepthInMainChain() == 0)
3010         {
3011             printf("FixSpentCoins %s tx %s\n", fCheckOnly ? "found" : "removed", pcoin->GetHash().ToString().c_str());
3012             if (!fCheckOnly)
3013             {
3014                 EraseFromWallet(pcoin->GetHash());
3015             }
3016         }
3017     }
3018 }
3019
3020 // ppcoin: disable transaction (only for coinstake)
3021 void CWallet::DisableTransaction(const CTransaction &tx)
3022 {
3023     if (!tx.IsCoinStake() || !IsFromMe(tx))
3024         return; // only disconnecting coinstake requires marking input unspent
3025
3026     LOCK(cs_wallet);
3027     for(const auto& txin :  tx.vin)
3028     {
3029         auto mi = mapWallet.find(txin.prevout.hash);
3030         if (mi != mapWallet.end())
3031         {
3032             auto& prev = (*mi).second;
3033             if (txin.prevout.n < prev.vout.size() && IsMine(prev.vout[txin.prevout.n]))
3034             {
3035                 prev.MarkUnspent(txin.prevout.n);
3036                 prev.WriteToDisk();
3037             }
3038         }
3039     }
3040 }
3041
3042 CPubKey CReserveKey::GetReservedKey()
3043 {
3044     if (nIndex == -1)
3045     {
3046         CKeyPool keypool;
3047         pwallet->ReserveKeyFromKeyPool(nIndex, keypool);
3048         if (nIndex != -1)
3049             vchPubKey = keypool.vchPubKey;
3050         else
3051         {
3052             printf("CReserveKey::GetReservedKey(): Warning: Using default key instead of a new key, top up your keypool!");
3053             vchPubKey = pwallet->vchDefaultKey;
3054         }
3055     }
3056     assert(vchPubKey.IsValid());
3057     return vchPubKey;
3058 }
3059
3060 void CReserveKey::KeepKey()
3061 {
3062     if (nIndex != -1)
3063         pwallet->KeepKey(nIndex);
3064     nIndex = -1;
3065     vchPubKey = CPubKey();
3066 }
3067
3068 void CReserveKey::ReturnKey()
3069 {
3070     if (nIndex != -1)
3071         pwallet->ReturnKey(nIndex);
3072     nIndex = -1;
3073     vchPubKey = CPubKey();
3074 }
3075
3076 void CWallet::GetAllReserveKeys(set<CKeyID>& setAddress) const
3077 {
3078     setAddress.clear();
3079
3080     CWalletDB walletdb(strWalletFile);
3081
3082     LOCK2(cs_main, cs_wallet);
3083     for(const int64_t& id :  setKeyPool)
3084     {
3085         CKeyPool keypool;
3086         if (!walletdb.ReadPool(id, keypool))
3087             throw runtime_error("GetAllReserveKeyHashes() : read failed");
3088         assert(keypool.vchPubKey.IsValid());
3089         auto keyID = keypool.vchPubKey.GetID();
3090         if (!HaveKey(keyID))
3091             throw runtime_error("GetAllReserveKeyHashes() : unknown key in key pool");
3092         setAddress.insert(keyID);
3093     }
3094 }
3095
3096 void CWallet::UpdatedTransaction(const uint256 &hashTx)
3097 {
3098     {
3099         LOCK(cs_wallet);
3100         // Only notify UI if this transaction is in this wallet
3101         auto mi = mapWallet.find(hashTx);
3102         if (mi != mapWallet.end())
3103         {
3104             NotifyTransactionChanged(this, hashTx, CT_UPDATED);
3105             vMintingWalletUpdated.push_back(hashTx);
3106         }
3107     }
3108 }
3109
3110 void CWallet::GetAddresses(map<CBitcoinAddress, int64_t> &mapAddresses) const {
3111     mapAddresses.clear();
3112
3113     // get birth times for keys with metadata
3114     for (auto it = mapKeyMetadata.begin(); it != mapKeyMetadata.end(); it++) {
3115         mapAddresses[it->first] = it->second.nCreateTime ? it->second.nCreateTime : 0;
3116     }
3117
3118     for (auto it = mapWallet.begin(); it != mapWallet.end(); it++) {
3119         // iterate over all wallet transactions...
3120         const auto &wtx = (*it).second;
3121         if (wtx.hashBlock == 0)
3122             continue; // skip unconfirmed transactions
3123
3124         for(auto it2 = wtx.vout.begin(); it2 != wtx.vout.end(); it2++) {
3125             const CTxOut &out = (*it2);
3126             // iterate over all their outputs
3127             CBitcoinAddress addressRet;
3128             if (ExtractAddress(*this, out.scriptPubKey, addressRet)) {
3129                 if (mapAddresses.find(addressRet) != mapAddresses.end() && (mapAddresses[addressRet] == 0 || mapAddresses[addressRet] > wtx.nTime))
3130                     mapAddresses[addressRet] = wtx.nTime;
3131             }
3132             else {
3133                 // multisig output affects more than one key
3134                 vector<CKeyID> vAffected;
3135                 ::ExtractAffectedKeys(*this, out.scriptPubKey, vAffected);
3136
3137                 for(auto it3 = vAffected.begin(); it3 != vAffected.end(); it3++) {
3138                     CBitcoinAddress addrAffected(*it3);
3139                     if (mapAddresses.find(addrAffected) != mapAddresses.end() && (mapAddresses[addrAffected] == 0 || mapAddresses[addrAffected] > wtx.nTime))
3140                         mapAddresses[addrAffected] = wtx.nTime;
3141                 }
3142                 vAffected.clear();
3143             }
3144         }
3145     }
3146 }
3147
3148 void CWallet::ClearOrphans()
3149 {
3150     list<uint256> orphans;
3151
3152     LOCK(cs_wallet);
3153     for(auto it = mapWallet.begin(); it != mapWallet.end(); ++it)
3154     {
3155         const CWalletTx *wtx = &(*it).second;
3156         if((wtx->IsCoinBase() || wtx->IsCoinStake()) && !wtx->IsInMainChain())
3157         {
3158             orphans.push_back(wtx->GetHash());
3159         }
3160     }
3161
3162     for(auto it = orphans.begin(); it != orphans.end(); ++it)
3163         EraseFromWallet(*it);
3164 }
3165