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