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