Some extra comments
[novacoin.git] / src / wallet.cpp
1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2011 The Bitcoin developers
3 // Distributed under the MIT/X11 software license, see the accompanying
4 // file license.txt or http://www.opensource.org/licenses/mit-license.php.
5
6 #include "headers.h"
7 #include "db.h"
8 #include "crypter.h"
9
10 using namespace std;
11
12
13 //////////////////////////////////////////////////////////////////////////////
14 //
15 // mapWallet
16 //
17
18 bool CWallet::AddKey(const CKey& key)
19 {
20     if (!CCryptoKeyStore::AddKey(key))
21         return false;
22     if (!fFileBacked)
23         return true;
24     if (!IsCrypted())
25         return CWalletDB(strWalletFile).WriteKey(key.GetPubKey(), key.GetPrivKey());
26     return true;
27 }
28
29 bool CWallet::AddCryptedKey(const vector<unsigned char> &vchPubKey, const vector<unsigned char> &vchCryptedSecret)
30 {
31     if (!CCryptoKeyStore::AddCryptedKey(vchPubKey, vchCryptedSecret))
32         return false;
33     if (!fFileBacked)
34         return true;
35     CRITICAL_BLOCK(cs_wallet)
36     {
37         if (pwalletdbEncryption)
38             return pwalletdbEncryption->WriteCryptedKey(vchPubKey, vchCryptedSecret);
39         else
40             return CWalletDB(strWalletFile).WriteCryptedKey(vchPubKey, vchCryptedSecret);
41     }
42     return false;
43 }
44
45 bool CWallet::Unlock(const string& strWalletPassphrase)
46 {
47     if (!IsLocked())
48         return false;
49
50     CCrypter crypter;
51     CKeyingMaterial vMasterKey;
52
53     CRITICAL_BLOCK(cs_wallet)
54         BOOST_FOREACH(const MasterKeyMap::value_type& pMasterKey, mapMasterKeys)
55         {
56             if(!crypter.SetKeyFromPassphrase(strWalletPassphrase, pMasterKey.second.vchSalt, pMasterKey.second.nDeriveIterations, pMasterKey.second.nDerivationMethod))
57                 return false;
58             if (!crypter.Decrypt(pMasterKey.second.vchCryptedKey, vMasterKey))
59                 return false;
60             if (CCryptoKeyStore::Unlock(vMasterKey))
61                 return true;
62         }
63     return false;
64 }
65
66 bool CWallet::ChangeWalletPassphrase(const string& strOldWalletPassphrase, const string& strNewWalletPassphrase)
67 {
68     bool fWasLocked = IsLocked();
69
70     CRITICAL_BLOCK(cs_wallet)
71     {
72         Lock();
73
74         CCrypter crypter;
75         CKeyingMaterial vMasterKey;
76         BOOST_FOREACH(MasterKeyMap::value_type& pMasterKey, mapMasterKeys)
77         {
78             if(!crypter.SetKeyFromPassphrase(strOldWalletPassphrase, pMasterKey.second.vchSalt, pMasterKey.second.nDeriveIterations, pMasterKey.second.nDerivationMethod))
79                 return false;
80             if (!crypter.Decrypt(pMasterKey.second.vchCryptedKey, vMasterKey))
81                 return false;
82             if (CCryptoKeyStore::Unlock(vMasterKey))
83             {
84                 int64 nStartTime = GetTimeMillis();
85                 crypter.SetKeyFromPassphrase(strNewWalletPassphrase, pMasterKey.second.vchSalt, pMasterKey.second.nDeriveIterations, pMasterKey.second.nDerivationMethod);
86                 pMasterKey.second.nDeriveIterations = pMasterKey.second.nDeriveIterations * (100 / ((double)(GetTimeMillis() - nStartTime)));
87
88                 nStartTime = GetTimeMillis();
89                 crypter.SetKeyFromPassphrase(strNewWalletPassphrase, pMasterKey.second.vchSalt, pMasterKey.second.nDeriveIterations, pMasterKey.second.nDerivationMethod);
90                 pMasterKey.second.nDeriveIterations = (pMasterKey.second.nDeriveIterations + pMasterKey.second.nDeriveIterations * 100 / ((double)(GetTimeMillis() - nStartTime))) / 2;
91
92                 if (pMasterKey.second.nDeriveIterations < 25000)
93                     pMasterKey.second.nDeriveIterations = 25000;
94
95                 printf("Wallet passphrase changed to an nDeriveIterations of %i\n", pMasterKey.second.nDeriveIterations);
96
97                 if (!crypter.SetKeyFromPassphrase(strNewWalletPassphrase, pMasterKey.second.vchSalt, pMasterKey.second.nDeriveIterations, pMasterKey.second.nDerivationMethod))
98                     return false;
99                 if (!crypter.Encrypt(vMasterKey, pMasterKey.second.vchCryptedKey))
100                     return false;
101                 CWalletDB(strWalletFile).WriteMasterKey(pMasterKey.first, pMasterKey.second);
102                 if (fWasLocked)
103                     Lock();
104                 return true;
105             }
106         }
107     }
108
109     return false;
110 }
111
112
113 // This class implements an addrIncoming entry that causes pre-0.4
114 // clients to crash on startup if reading a private-key-encrypted wallet.
115 class CCorruptAddress
116 {
117 public:
118     IMPLEMENT_SERIALIZE
119     (
120         if (nType & SER_DISK)
121             READWRITE(nVersion);
122     )
123 };
124
125 bool CWallet::EncryptWallet(const string& strWalletPassphrase)
126 {
127     if (IsCrypted())
128         return false;
129
130     CKeyingMaterial vMasterKey;
131     RandAddSeedPerfmon();
132
133     vMasterKey.resize(WALLET_CRYPTO_KEY_SIZE);
134     RAND_bytes(&vMasterKey[0], WALLET_CRYPTO_KEY_SIZE);
135
136     CMasterKey kMasterKey;
137
138     RandAddSeedPerfmon();
139     kMasterKey.vchSalt.resize(WALLET_CRYPTO_SALT_SIZE);
140     RAND_bytes(&kMasterKey.vchSalt[0], WALLET_CRYPTO_SALT_SIZE);
141
142     CCrypter crypter;
143     int64 nStartTime = GetTimeMillis();
144     crypter.SetKeyFromPassphrase(strWalletPassphrase, kMasterKey.vchSalt, 25000, kMasterKey.nDerivationMethod);
145     kMasterKey.nDeriveIterations = 2500000 / ((double)(GetTimeMillis() - nStartTime));
146
147     nStartTime = GetTimeMillis();
148     crypter.SetKeyFromPassphrase(strWalletPassphrase, kMasterKey.vchSalt, kMasterKey.nDeriveIterations, kMasterKey.nDerivationMethod);
149     kMasterKey.nDeriveIterations = (kMasterKey.nDeriveIterations + kMasterKey.nDeriveIterations * 100 / ((double)(GetTimeMillis() - nStartTime))) / 2;
150
151     if (kMasterKey.nDeriveIterations < 25000)
152         kMasterKey.nDeriveIterations = 25000;
153
154     printf("Encrypting Wallet with an nDeriveIterations of %i\n", kMasterKey.nDeriveIterations);
155
156     if (!crypter.SetKeyFromPassphrase(strWalletPassphrase, kMasterKey.vchSalt, kMasterKey.nDeriveIterations, kMasterKey.nDerivationMethod))
157         return false;
158     if (!crypter.Encrypt(vMasterKey, kMasterKey.vchCryptedKey))
159         return false;
160
161     CRITICAL_BLOCK(cs_wallet)
162     {
163         mapMasterKeys[++nMasterKeyMaxID] = kMasterKey;
164         if (fFileBacked)
165         {
166             pwalletdbEncryption = new CWalletDB(strWalletFile);
167             pwalletdbEncryption->TxnBegin();
168             pwalletdbEncryption->WriteMasterKey(nMasterKeyMaxID, kMasterKey);
169         }
170
171         if (!EncryptKeys(vMasterKey))
172         {
173             if (fFileBacked)
174                 pwalletdbEncryption->TxnAbort();
175             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.
176         }
177
178         if (fFileBacked)
179         {
180             CCorruptAddress corruptAddress;
181             pwalletdbEncryption->WriteSetting("addrIncoming", corruptAddress);
182             if (!pwalletdbEncryption->TxnCommit())
183                 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.
184
185             pwalletdbEncryption->Close();
186             pwalletdbEncryption = NULL;
187         }
188
189         Lock();
190     }
191
192     return true;
193 }
194
195 void CWallet::WalletUpdateSpent(const CTransaction &tx)
196 {
197     // Anytime a signature is successfully verified, it's proof the outpoint is spent.
198     // Update the wallet spent flag if it doesn't know due to wallet.dat being
199     // restored from backup or the user making copies of wallet.dat.
200     CRITICAL_BLOCK(cs_wallet)
201     {
202         BOOST_FOREACH(const CTxIn& txin, tx.vin)
203         {
204             map<uint256, CWalletTx>::iterator mi = mapWallet.find(txin.prevout.hash);
205             if (mi != mapWallet.end())
206             {
207                 CWalletTx& wtx = (*mi).second;
208                 if (!wtx.IsSpent(txin.prevout.n) && IsMine(wtx.vout[txin.prevout.n]))
209                 {
210                     printf("WalletUpdateSpent found spent coin %sbc %s\n", FormatMoney(wtx.GetCredit()).c_str(), wtx.GetHash().ToString().c_str());
211                     wtx.MarkSpent(txin.prevout.n);
212                     wtx.WriteToDisk();
213                     vWalletUpdated.push_back(txin.prevout.hash);
214                 }
215             }
216         }
217     }
218 }
219
220 bool CWallet::AddToWallet(const CWalletTx& wtxIn)
221 {
222     uint256 hash = wtxIn.GetHash();
223     CRITICAL_BLOCK(cs_wallet)
224     {
225         // Inserts only if not already there, returns tx inserted or tx found
226         pair<map<uint256, CWalletTx>::iterator, bool> ret = mapWallet.insert(make_pair(hash, wtxIn));
227         CWalletTx& wtx = (*ret.first).second;
228         wtx.pwallet = this;
229         bool fInsertedNew = ret.second;
230         if (fInsertedNew)
231             wtx.nTimeReceived = GetAdjustedTime();
232
233         bool fUpdated = false;
234         if (!fInsertedNew)
235         {
236             // Merge
237             if (wtxIn.hashBlock != 0 && wtxIn.hashBlock != wtx.hashBlock)
238             {
239                 wtx.hashBlock = wtxIn.hashBlock;
240                 fUpdated = true;
241             }
242             if (wtxIn.nIndex != -1 && (wtxIn.vMerkleBranch != wtx.vMerkleBranch || wtxIn.nIndex != wtx.nIndex))
243             {
244                 wtx.vMerkleBranch = wtxIn.vMerkleBranch;
245                 wtx.nIndex = wtxIn.nIndex;
246                 fUpdated = true;
247             }
248             if (wtxIn.fFromMe && wtxIn.fFromMe != wtx.fFromMe)
249             {
250                 wtx.fFromMe = wtxIn.fFromMe;
251                 fUpdated = true;
252             }
253             fUpdated |= wtx.UpdateSpent(wtxIn.vfSpent);
254         }
255
256         //// debug print
257         printf("AddToWallet %s  %s%s\n", wtxIn.GetHash().ToString().substr(0,10).c_str(), (fInsertedNew ? "new" : ""), (fUpdated ? "update" : ""));
258
259         // Write to disk
260         if (fInsertedNew || fUpdated)
261             if (!wtx.WriteToDisk())
262                 return false;
263 #ifndef QT_GUI
264         // If default receiving address gets used, replace it with a new one
265         CScript scriptDefaultKey;
266         scriptDefaultKey.SetBitcoinAddress(vchDefaultKey);
267         BOOST_FOREACH(const CTxOut& txout, wtx.vout)
268         {
269             if (txout.scriptPubKey == scriptDefaultKey)
270             {
271                 std::vector<unsigned char> newDefaultKey;
272                 if (GetKeyFromPool(newDefaultKey, false))
273                 {
274                     SetDefaultKey(newDefaultKey);
275                     SetAddressBookName(CBitcoinAddress(vchDefaultKey), "");
276                 }
277             }
278         }
279 #endif
280         // Notify UI
281         vWalletUpdated.push_back(hash);
282
283         // since AddToWallet is called directly for self-originating transactions, check for consumption of own coins
284         WalletUpdateSpent(wtx);
285     }
286
287     // Refresh UI
288     MainFrameRepaint();
289     return true;
290 }
291
292 // Add a transaction to the wallet, or update it.
293 // pblock is optional, but should be provided if the transaction is known to be in a block.
294 // If fUpdate is true, existing transactions will be updated.
295 bool CWallet::AddToWalletIfInvolvingMe(const CTransaction& tx, const CBlock* pblock, bool fUpdate)
296 {
297     uint256 hash = tx.GetHash();
298     CRITICAL_BLOCK(cs_wallet)
299     {
300         bool fExisted = mapWallet.count(hash);
301         if (fExisted && !fUpdate) return false;
302         if (fExisted || IsMine(tx) || IsFromMe(tx))
303         {
304             CWalletTx wtx(this,tx);
305             // Get merkle branch if transaction was found in a block
306             if (pblock)
307                 wtx.SetMerkleBranch(pblock);
308             return AddToWallet(wtx);
309         }
310         else
311             WalletUpdateSpent(tx);
312     }
313     return false;
314 }
315
316 bool CWallet::EraseFromWallet(uint256 hash)
317 {
318     if (!fFileBacked)
319         return false;
320     CRITICAL_BLOCK(cs_wallet)
321     {
322         if (mapWallet.erase(hash))
323             CWalletDB(strWalletFile).EraseTx(hash);
324     }
325     return true;
326 }
327
328
329 bool CWallet::IsMine(const CTxIn &txin) const
330 {
331     CRITICAL_BLOCK(cs_wallet)
332     {
333         map<uint256, CWalletTx>::const_iterator mi = mapWallet.find(txin.prevout.hash);
334         if (mi != mapWallet.end())
335         {
336             const CWalletTx& prev = (*mi).second;
337             if (txin.prevout.n < prev.vout.size())
338                 if (IsMine(prev.vout[txin.prevout.n]))
339                     return true;
340         }
341     }
342     return false;
343 }
344
345 int64 CWallet::GetDebit(const CTxIn &txin) const
346 {
347     CRITICAL_BLOCK(cs_wallet)
348     {
349         map<uint256, CWalletTx>::const_iterator mi = mapWallet.find(txin.prevout.hash);
350         if (mi != mapWallet.end())
351         {
352             const CWalletTx& prev = (*mi).second;
353             if (txin.prevout.n < prev.vout.size())
354                 if (IsMine(prev.vout[txin.prevout.n]))
355                     return prev.vout[txin.prevout.n].nValue;
356         }
357     }
358     return 0;
359 }
360
361 int64 CWalletTx::GetTxTime() const
362 {
363     return nTimeReceived;
364 }
365
366 int CWalletTx::GetRequestCount() const
367 {
368     // Returns -1 if it wasn't being tracked
369     int nRequests = -1;
370     CRITICAL_BLOCK(pwallet->cs_wallet)
371     {
372         if (IsCoinBase())
373         {
374             // Generated block
375             if (hashBlock != 0)
376             {
377                 map<uint256, int>::const_iterator mi = pwallet->mapRequestCount.find(hashBlock);
378                 if (mi != pwallet->mapRequestCount.end())
379                     nRequests = (*mi).second;
380             }
381         }
382         else
383         {
384             // Did anyone request this transaction?
385             map<uint256, int>::const_iterator mi = pwallet->mapRequestCount.find(GetHash());
386             if (mi != pwallet->mapRequestCount.end())
387             {
388                 nRequests = (*mi).second;
389
390                 // How about the block it's in?
391                 if (nRequests == 0 && hashBlock != 0)
392                 {
393                     map<uint256, int>::const_iterator mi = pwallet->mapRequestCount.find(hashBlock);
394                     if (mi != pwallet->mapRequestCount.end())
395                         nRequests = (*mi).second;
396                     else
397                         nRequests = 1; // If it's in someone else's block it must have got out
398                 }
399             }
400         }
401     }
402     return nRequests;
403 }
404
405 void CWalletTx::GetAmounts(int64& nGeneratedImmature, int64& nGeneratedMature, list<pair<CBitcoinAddress, int64> >& listReceived,
406                            list<pair<CBitcoinAddress, int64> >& listSent, int64& nFee, string& strSentAccount) const
407 {
408     nGeneratedImmature = nGeneratedMature = nFee = 0;
409     listReceived.clear();
410     listSent.clear();
411     strSentAccount = strFromAccount;
412
413     if (IsCoinBase())
414     {
415         if (GetBlocksToMaturity() > 0)
416             nGeneratedImmature = pwallet->GetCredit(*this);
417         else
418             nGeneratedMature = GetCredit();
419         return;
420     }
421
422     // Compute fee:
423     int64 nDebit = GetDebit();
424     if (nDebit > 0) // debit>0 means we signed/sent this transaction
425     {
426         int64 nValueOut = GetValueOut();
427         nFee = nDebit - nValueOut;
428     }
429
430     // Sent/received.  Standard client will never generate a send-to-multiple-recipients,
431     // but non-standard clients might (so return a list of address/amount pairs)
432     BOOST_FOREACH(const CTxOut& txout, vout)
433     {
434         CBitcoinAddress address;
435         vector<unsigned char> vchPubKey;
436         if (!ExtractAddress(txout.scriptPubKey, NULL, address))
437         {
438             printf("CWalletTx::GetAmounts: Unknown transaction type found, txid %s\n",
439                    this->GetHash().ToString().c_str());
440             address = " unknown ";
441         }
442
443         // Don't report 'change' txouts
444         if (nDebit > 0 && pwallet->IsChange(txout))
445             continue;
446
447         if (nDebit > 0)
448             listSent.push_back(make_pair(address, txout.nValue));
449
450         if (pwallet->IsMine(txout))
451             listReceived.push_back(make_pair(address, txout.nValue));
452     }
453
454 }
455
456 void CWalletTx::GetAccountAmounts(const string& strAccount, int64& nGenerated, int64& nReceived, 
457                                   int64& nSent, int64& nFee) const
458 {
459     nGenerated = nReceived = nSent = nFee = 0;
460
461     int64 allGeneratedImmature, allGeneratedMature, allFee;
462     allGeneratedImmature = allGeneratedMature = allFee = 0;
463     string strSentAccount;
464     list<pair<CBitcoinAddress, int64> > listReceived;
465     list<pair<CBitcoinAddress, int64> > listSent;
466     GetAmounts(allGeneratedImmature, allGeneratedMature, listReceived, listSent, allFee, strSentAccount);
467
468     if (strAccount == "")
469         nGenerated = allGeneratedMature;
470     if (strAccount == strSentAccount)
471     {
472         BOOST_FOREACH(const PAIRTYPE(CBitcoinAddress,int64)& s, listSent)
473             nSent += s.second;
474         nFee = allFee;
475     }
476     CRITICAL_BLOCK(pwallet->cs_wallet)
477     {
478         BOOST_FOREACH(const PAIRTYPE(CBitcoinAddress,int64)& r, listReceived)
479         {
480             if (pwallet->mapAddressBook.count(r.first))
481             {
482                 map<CBitcoinAddress, string>::const_iterator mi = pwallet->mapAddressBook.find(r.first);
483                 if (mi != pwallet->mapAddressBook.end() && (*mi).second == strAccount)
484                     nReceived += r.second;
485             }
486             else if (strAccount.empty())
487             {
488                 nReceived += r.second;
489             }
490         }
491     }
492 }
493
494 void CWalletTx::AddSupportingTransactions(CTxDB& txdb)
495 {
496     vtxPrev.clear();
497
498     const int COPY_DEPTH = 3;
499     if (SetMerkleBranch() < COPY_DEPTH)
500     {
501         vector<uint256> vWorkQueue;
502         BOOST_FOREACH(const CTxIn& txin, vin)
503             vWorkQueue.push_back(txin.prevout.hash);
504
505         // This critsect is OK because txdb is already open
506         CRITICAL_BLOCK(pwallet->cs_wallet)
507         {
508             map<uint256, const CMerkleTx*> mapWalletPrev;
509             set<uint256> setAlreadyDone;
510             for (int i = 0; i < vWorkQueue.size(); i++)
511             {
512                 uint256 hash = vWorkQueue[i];
513                 if (setAlreadyDone.count(hash))
514                     continue;
515                 setAlreadyDone.insert(hash);
516
517                 CMerkleTx tx;
518                 map<uint256, CWalletTx>::const_iterator mi = pwallet->mapWallet.find(hash);
519                 if (mi != pwallet->mapWallet.end())
520                 {
521                     tx = (*mi).second;
522                     BOOST_FOREACH(const CMerkleTx& txWalletPrev, (*mi).second.vtxPrev)
523                         mapWalletPrev[txWalletPrev.GetHash()] = &txWalletPrev;
524                 }
525                 else if (mapWalletPrev.count(hash))
526                 {
527                     tx = *mapWalletPrev[hash];
528                 }
529                 else if (!fClient && txdb.ReadDiskTx(hash, tx))
530                 {
531                     ;
532                 }
533                 else
534                 {
535                     printf("ERROR: AddSupportingTransactions() : unsupported transaction\n");
536                     continue;
537                 }
538
539                 int nDepth = tx.SetMerkleBranch();
540                 vtxPrev.push_back(tx);
541
542                 if (nDepth < COPY_DEPTH)
543                     BOOST_FOREACH(const CTxIn& txin, tx.vin)
544                         vWorkQueue.push_back(txin.prevout.hash);
545             }
546         }
547     }
548
549     reverse(vtxPrev.begin(), vtxPrev.end());
550 }
551
552 bool CWalletTx::WriteToDisk()
553 {
554     return CWalletDB(pwallet->strWalletFile).WriteTx(GetHash(), *this);
555 }
556
557 // Scan the block chain (starting in pindexStart) for transactions
558 // from or to us. If fUpdate is true, found transactions that already
559 // exist in the wallet will be updated.
560 int CWallet::ScanForWalletTransactions(CBlockIndex* pindexStart, bool fUpdate)
561 {
562     int ret = 0;
563
564     CBlockIndex* pindex = pindexStart;
565     CRITICAL_BLOCK(cs_wallet)
566     {
567         while (pindex)
568         {
569             CBlock block;
570             block.ReadFromDisk(pindex, true);
571             BOOST_FOREACH(CTransaction& tx, block.vtx)
572             {
573                 if (AddToWalletIfInvolvingMe(tx, &block, fUpdate))
574                     ret++;
575             }
576             pindex = pindex->pnext;
577         }
578     }
579     return ret;
580 }
581
582 void CWallet::ReacceptWalletTransactions()
583 {
584     CTxDB txdb("r");
585     bool fRepeat = true;
586     while (fRepeat) CRITICAL_BLOCK(cs_wallet)
587     {
588         fRepeat = false;
589         vector<CDiskTxPos> vMissingTx;
590         BOOST_FOREACH(PAIRTYPE(const uint256, CWalletTx)& item, mapWallet)
591         {
592             CWalletTx& wtx = item.second;
593             if (wtx.IsCoinBase() && wtx.IsSpent(0))
594                 continue;
595
596             CTxIndex txindex;
597             bool fUpdated = false;
598             if (txdb.ReadTxIndex(wtx.GetHash(), txindex))
599             {
600                 // Update fSpent if a tx got spent somewhere else by a copy of wallet.dat
601                 if (txindex.vSpent.size() != wtx.vout.size())
602                 {
603                     printf("ERROR: ReacceptWalletTransactions() : txindex.vSpent.size() %d != wtx.vout.size() %d\n", txindex.vSpent.size(), wtx.vout.size());
604                     continue;
605                 }
606                 for (int i = 0; i < txindex.vSpent.size(); i++)
607                 {
608                     if (wtx.IsSpent(i))
609                         continue;
610                     if (!txindex.vSpent[i].IsNull() && IsMine(wtx.vout[i]))
611                     {
612                         wtx.MarkSpent(i);
613                         fUpdated = true;
614                         vMissingTx.push_back(txindex.vSpent[i]);
615                     }
616                 }
617                 if (fUpdated)
618                 {
619                     printf("ReacceptWalletTransactions found spent coin %sbc %s\n", FormatMoney(wtx.GetCredit()).c_str(), wtx.GetHash().ToString().c_str());
620                     wtx.MarkDirty();
621                     wtx.WriteToDisk();
622                 }
623             }
624             else
625             {
626                 // Reaccept any txes of ours that aren't already in a block
627                 if (!wtx.IsCoinBase())
628                     wtx.AcceptWalletTransaction(txdb, false);
629             }
630         }
631         if (!vMissingTx.empty())
632         {
633             // TODO: optimize this to scan just part of the block chain?
634             if (ScanForWalletTransactions(pindexGenesisBlock))
635                 fRepeat = true;  // Found missing transactions: re-do Reaccept.
636         }
637     }
638 }
639
640 void CWalletTx::RelayWalletTransaction(CTxDB& txdb)
641 {
642     BOOST_FOREACH(const CMerkleTx& tx, vtxPrev)
643     {
644         if (!tx.IsCoinBase())
645         {
646             uint256 hash = tx.GetHash();
647             if (!txdb.ContainsTx(hash))
648                 RelayMessage(CInv(MSG_TX, hash), (CTransaction)tx);
649         }
650     }
651     if (!IsCoinBase())
652     {
653         uint256 hash = GetHash();
654         if (!txdb.ContainsTx(hash))
655         {
656             printf("Relaying wtx %s\n", hash.ToString().substr(0,10).c_str());
657             RelayMessage(CInv(MSG_TX, hash), (CTransaction)*this);
658         }
659     }
660 }
661
662 void CWalletTx::RelayWalletTransaction()
663 {
664    CTxDB txdb("r");
665    RelayWalletTransaction(txdb);
666 }
667
668 void CWallet::ResendWalletTransactions()
669 {
670     // Do this infrequently and randomly to avoid giving away
671     // that these are our transactions.
672     static int64 nNextTime;
673     if (GetTime() < nNextTime)
674         return;
675     bool fFirst = (nNextTime == 0);
676     nNextTime = GetTime() + GetRand(30 * 60);
677     if (fFirst)
678         return;
679
680     // Only do it if there's been a new block since last time
681     static int64 nLastTime;
682     if (nTimeBestReceived < nLastTime)
683         return;
684     nLastTime = GetTime();
685
686     // Rebroadcast any of our txes that aren't in a block yet
687     printf("ResendWalletTransactions()\n");
688     CTxDB txdb("r");
689     CRITICAL_BLOCK(cs_wallet)
690     {
691         // Sort them in chronological order
692         multimap<unsigned int, CWalletTx*> mapSorted;
693         BOOST_FOREACH(PAIRTYPE(const uint256, CWalletTx)& item, mapWallet)
694         {
695             CWalletTx& wtx = item.second;
696             // Don't rebroadcast until it's had plenty of time that
697             // it should have gotten in already by now.
698             if (nTimeBestReceived - (int64)wtx.nTimeReceived > 5 * 60)
699                 mapSorted.insert(make_pair(wtx.nTimeReceived, &wtx));
700         }
701         BOOST_FOREACH(PAIRTYPE(const unsigned int, CWalletTx*)& item, mapSorted)
702         {
703             CWalletTx& wtx = *item.second;
704             wtx.RelayWalletTransaction(txdb);
705         }
706     }
707 }
708
709
710
711
712
713
714 //////////////////////////////////////////////////////////////////////////////
715 //
716 // Actions
717 //
718
719
720 int64 CWallet::GetBalance() const
721 {
722     int64 nTotal = 0;
723     CRITICAL_BLOCK(cs_wallet)
724     {
725         for (map<uint256, CWalletTx>::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
726         {
727             const CWalletTx* pcoin = &(*it).second;
728             if (!pcoin->IsFinal() || !pcoin->IsConfirmed())
729                 continue;
730             nTotal += pcoin->GetAvailableCredit();
731         }
732     }
733
734     return nTotal;
735 }
736
737 int64 CWallet::GetUnconfirmedBalance() const
738 {
739     int64 nTotal = 0;
740     CRITICAL_BLOCK(cs_wallet)
741     {
742         for (map<uint256, CWalletTx>::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
743         {
744             const CWalletTx* pcoin = &(*it).second;
745             if (pcoin->IsFinal() && pcoin->IsConfirmed())
746                 continue;
747             nTotal += pcoin->GetAvailableCredit();
748         }
749     }
750     return nTotal;
751 }
752
753 bool CWallet::SelectCoinsMinConf(int64 nTargetValue, int nConfMine, int nConfTheirs, set<pair<const CWalletTx*,unsigned int> >& setCoinsRet, int64& nValueRet) const
754 {
755     setCoinsRet.clear();
756     nValueRet = 0;
757
758     // List of values less than target
759     pair<int64, pair<const CWalletTx*,unsigned int> > coinLowestLarger;
760     coinLowestLarger.first = INT64_MAX;
761     coinLowestLarger.second.first = NULL;
762     vector<pair<int64, pair<const CWalletTx*,unsigned int> > > vValue;
763     int64 nTotalLower = 0;
764
765     CRITICAL_BLOCK(cs_wallet)
766     {
767        vector<const CWalletTx*> vCoins;
768        vCoins.reserve(mapWallet.size());
769        for (map<uint256, CWalletTx>::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
770            vCoins.push_back(&(*it).second);
771        random_shuffle(vCoins.begin(), vCoins.end(), GetRandInt);
772
773        BOOST_FOREACH(const CWalletTx* pcoin, vCoins)
774        {
775             if (!pcoin->IsFinal() || !pcoin->IsConfirmed())
776                 continue;
777
778             if (pcoin->IsCoinBase() && pcoin->GetBlocksToMaturity() > 0)
779                 continue;
780
781             int nDepth = pcoin->GetDepthInMainChain();
782             if (nDepth < (pcoin->IsFromMe() ? nConfMine : nConfTheirs))
783                 continue;
784
785             for (int i = 0; i < pcoin->vout.size(); i++)
786             {
787                 if (pcoin->IsSpent(i) || !IsMine(pcoin->vout[i]))
788                     continue;
789
790                 int64 n = pcoin->vout[i].nValue;
791
792                 if (n <= 0)
793                     continue;
794
795                 pair<int64,pair<const CWalletTx*,unsigned int> > coin = make_pair(n,make_pair(pcoin,i));
796
797                 if (n == nTargetValue)
798                 {
799                     setCoinsRet.insert(coin.second);
800                     nValueRet += coin.first;
801                     return true;
802                 }
803                 else if (n < nTargetValue + CENT)
804                 {
805                     vValue.push_back(coin);
806                     nTotalLower += n;
807                 }
808                 else if (n < coinLowestLarger.first)
809                 {
810                     coinLowestLarger = coin;
811                 }
812             }
813         }
814     }
815
816     if (nTotalLower == nTargetValue || nTotalLower == nTargetValue + CENT)
817     {
818         for (int i = 0; i < vValue.size(); ++i)
819         {
820             setCoinsRet.insert(vValue[i].second);
821             nValueRet += vValue[i].first;
822         }
823         return true;
824     }
825
826     if (nTotalLower < nTargetValue + (coinLowestLarger.second.first ? CENT : 0))
827     {
828         if (coinLowestLarger.second.first == NULL)
829             return false;
830         setCoinsRet.insert(coinLowestLarger.second);
831         nValueRet += coinLowestLarger.first;
832         return true;
833     }
834
835     if (nTotalLower >= nTargetValue + CENT)
836         nTargetValue += CENT;
837
838     // Solve subset sum by stochastic approximation
839     sort(vValue.rbegin(), vValue.rend());
840     vector<char> vfIncluded;
841     vector<char> vfBest(vValue.size(), true);
842     int64 nBest = nTotalLower;
843
844     for (int nRep = 0; nRep < 1000 && nBest != nTargetValue; nRep++)
845     {
846         vfIncluded.assign(vValue.size(), false);
847         int64 nTotal = 0;
848         bool fReachedTarget = false;
849         for (int nPass = 0; nPass < 2 && !fReachedTarget; nPass++)
850         {
851             for (int i = 0; i < vValue.size(); i++)
852             {
853                 if (nPass == 0 ? rand() % 2 : !vfIncluded[i])
854                 {
855                     nTotal += vValue[i].first;
856                     vfIncluded[i] = true;
857                     if (nTotal >= nTargetValue)
858                     {
859                         fReachedTarget = true;
860                         if (nTotal < nBest)
861                         {
862                             nBest = nTotal;
863                             vfBest = vfIncluded;
864                         }
865                         nTotal -= vValue[i].first;
866                         vfIncluded[i] = false;
867                     }
868                 }
869             }
870         }
871     }
872
873     // If the next larger is still closer, return it
874     if (coinLowestLarger.second.first && coinLowestLarger.first - nTargetValue <= nBest - nTargetValue)
875     {
876         setCoinsRet.insert(coinLowestLarger.second);
877         nValueRet += coinLowestLarger.first;
878     }
879     else {
880         for (int i = 0; i < vValue.size(); i++)
881             if (vfBest[i])
882             {
883                 setCoinsRet.insert(vValue[i].second);
884                 nValueRet += vValue[i].first;
885             }
886
887         //// debug print
888         printf("SelectCoins() best subset: ");
889         for (int i = 0; i < vValue.size(); i++)
890             if (vfBest[i])
891                 printf("%s ", FormatMoney(vValue[i].first).c_str());
892         printf("total %s\n", FormatMoney(nBest).c_str());
893     }
894
895     return true;
896 }
897
898 bool CWallet::SelectCoins(int64 nTargetValue, set<pair<const CWalletTx*,unsigned int> >& setCoinsRet, int64& nValueRet) const
899 {
900     return (SelectCoinsMinConf(nTargetValue, 1, 6, setCoinsRet, nValueRet) ||
901             SelectCoinsMinConf(nTargetValue, 1, 1, setCoinsRet, nValueRet) ||
902             SelectCoinsMinConf(nTargetValue, 0, 1, setCoinsRet, nValueRet));
903 }
904
905
906
907
908 bool CWallet::CreateTransaction(const vector<pair<CScript, int64> >& vecSend, CWalletTx& wtxNew, CReserveKey& reservekey, int64& nFeeRet)
909 {
910     int64 nValue = 0;
911     BOOST_FOREACH (const PAIRTYPE(CScript, int64)& s, vecSend)
912     {
913         if (nValue < 0)
914             return false;
915         nValue += s.second;
916     }
917     if (vecSend.empty() || nValue < 0)
918         return false;
919
920     wtxNew.pwallet = this;
921
922     CRITICAL_BLOCK(cs_main)
923     CRITICAL_BLOCK(cs_wallet)
924     {
925         // txdb must be opened before the mapWallet lock
926         CTxDB txdb("r");
927         {
928             nFeeRet = nTransactionFee;
929             loop
930             {
931                 wtxNew.vin.clear();
932                 wtxNew.vout.clear();
933                 wtxNew.fFromMe = true;
934
935                 int64 nTotalValue = nValue + nFeeRet;
936                 double dPriority = 0;
937                 // vouts to the payees
938                 BOOST_FOREACH (const PAIRTYPE(CScript, int64)& s, vecSend)
939                     wtxNew.vout.push_back(CTxOut(s.second, s.first));
940
941                 // Choose coins to use
942                 set<pair<const CWalletTx*,unsigned int> > setCoins;
943                 int64 nValueIn = 0;
944                 if (!SelectCoins(nTotalValue, setCoins, nValueIn))
945                     return false;
946                 BOOST_FOREACH(PAIRTYPE(const CWalletTx*, unsigned int) pcoin, setCoins)
947                 {
948                     int64 nCredit = pcoin.first->vout[pcoin.second].nValue;
949                     dPriority += (double)nCredit * pcoin.first->GetDepthInMainChain();
950                 }
951
952                 int64 nChange = nValueIn - nValue - nFeeRet;
953                 // if sub-cent change is required, the fee must be raised to at least MIN_TX_FEE
954                 // or until nChange becomes zero
955                 if (nFeeRet < MIN_TX_FEE && nChange > 0 && nChange < CENT)
956                 {
957                     int64 nMoveToFee = min(nChange, MIN_TX_FEE - nFeeRet);
958                     nChange -= nMoveToFee;
959                     nFeeRet += nMoveToFee;
960                 }
961
962                 if (nChange > 0)
963                 {
964                     // Note: We use a new key here to keep it from being obvious which side is the change.
965                     //  The drawback is that by not reusing a previous key, the change may be lost if a
966                     //  backup is restored, if the backup doesn't have the new private key for the change.
967                     //  If we reused the old key, it would be possible to add code to look for and
968                     //  rediscover unknown transactions that were written with keys of ours to recover
969                     //  post-backup change.
970
971                     // Reserve a new key pair from key pool
972                     vector<unsigned char> vchPubKey = reservekey.GetReservedKey();
973                     // assert(mapKeys.count(vchPubKey));
974
975                     // Fill a vout to ourself, using same address type as the payment
976                     CScript scriptChange;
977                     if (vecSend[0].first.GetBitcoinAddress().IsValid())
978                         scriptChange.SetBitcoinAddress(vchPubKey);
979                     else
980                         scriptChange << vchPubKey << OP_CHECKSIG;
981
982                     // Insert change txn at random position:
983                     vector<CTxOut>::iterator position = wtxNew.vout.begin()+GetRandInt(wtxNew.vout.size());
984                     wtxNew.vout.insert(position, CTxOut(nChange, scriptChange));
985                 }
986                 else
987                     reservekey.ReturnKey();
988
989                 // Fill vin
990                 BOOST_FOREACH(const PAIRTYPE(const CWalletTx*,unsigned int)& coin, setCoins)
991                     wtxNew.vin.push_back(CTxIn(coin.first->GetHash(),coin.second));
992
993                 // Sign
994                 int nIn = 0;
995                 BOOST_FOREACH(const PAIRTYPE(const CWalletTx*,unsigned int)& coin, setCoins)
996                     if (!SignSignature(*this, *coin.first, wtxNew, nIn++))
997                         return false;
998
999                 // Limit size
1000                 unsigned int nBytes = ::GetSerializeSize(*(CTransaction*)&wtxNew, SER_NETWORK);
1001                 if (nBytes >= MAX_BLOCK_SIZE_GEN/5)
1002                     return false;
1003                 dPriority /= nBytes;
1004
1005                 // Check that enough fee is included
1006                 int64 nPayFee = nTransactionFee * (1 + (int64)nBytes / 1000);
1007                 bool fAllowFree = CTransaction::AllowFree(dPriority);
1008                 int64 nMinFee = wtxNew.GetMinFee(1, fAllowFree);
1009                 if (nFeeRet < max(nPayFee, nMinFee))
1010                 {
1011                     nFeeRet = max(nPayFee, nMinFee);
1012                     continue;
1013                 }
1014
1015                 // Fill vtxPrev by copying from previous transactions vtxPrev
1016                 wtxNew.AddSupportingTransactions(txdb);
1017                 wtxNew.fTimeReceivedIsTxTime = true;
1018
1019                 break;
1020             }
1021         }
1022     }
1023     return true;
1024 }
1025
1026 bool CWallet::CreateTransaction(CScript scriptPubKey, int64 nValue, CWalletTx& wtxNew, CReserveKey& reservekey, int64& nFeeRet)
1027 {
1028     vector< pair<CScript, int64> > vecSend;
1029     vecSend.push_back(make_pair(scriptPubKey, nValue));
1030     return CreateTransaction(vecSend, wtxNew, reservekey, nFeeRet);
1031 }
1032
1033 // Call after CreateTransaction unless you want to abort
1034 bool CWallet::CommitTransaction(CWalletTx& wtxNew, CReserveKey& reservekey)
1035 {
1036     CRITICAL_BLOCK(cs_main)
1037     CRITICAL_BLOCK(cs_wallet)
1038     {
1039         printf("CommitTransaction:\n%s", wtxNew.ToString().c_str());
1040         {
1041             // This is only to keep the database open to defeat the auto-flush for the
1042             // duration of this scope.  This is the only place where this optimization
1043             // maybe makes sense; please don't do it anywhere else.
1044             CWalletDB* pwalletdb = fFileBacked ? new CWalletDB(strWalletFile,"r") : NULL;
1045
1046             // Take key pair from key pool so it won't be used again
1047             reservekey.KeepKey();
1048
1049             // Add tx to wallet, because if it has change it's also ours,
1050             // otherwise just for transaction history.
1051             AddToWallet(wtxNew);
1052
1053             // Mark old coins as spent
1054             set<CWalletTx*> setCoins;
1055             BOOST_FOREACH(const CTxIn& txin, wtxNew.vin)
1056             {
1057                 CWalletTx &coin = mapWallet[txin.prevout.hash];
1058                 coin.pwallet = this;
1059                 coin.MarkSpent(txin.prevout.n);
1060                 coin.WriteToDisk();
1061                 vWalletUpdated.push_back(coin.GetHash());
1062             }
1063
1064             if (fFileBacked)
1065                 delete pwalletdb;
1066         }
1067
1068         // Track how many getdata requests our transaction gets
1069         mapRequestCount[wtxNew.GetHash()] = 0;
1070
1071         // Broadcast
1072         if (!wtxNew.AcceptToMemoryPool())
1073         {
1074             // This must not fail. The transaction has already been signed and recorded.
1075             printf("CommitTransaction() : Error: Transaction not valid");
1076             return false;
1077         }
1078         wtxNew.RelayWalletTransaction();
1079     }
1080     MainFrameRepaint();
1081     return true;
1082 }
1083
1084
1085
1086
1087 string CWallet::SendMoney(CScript scriptPubKey, int64 nValue, CWalletTx& wtxNew, bool fAskFee)
1088 {
1089     CReserveKey reservekey(this);
1090     int64 nFeeRequired;
1091
1092     if (IsLocked())
1093     {
1094         string strError = _("Error: Wallet locked, unable to create transaction  ");
1095         printf("SendMoney() : %s", strError.c_str());
1096         return strError;
1097     }
1098     if (!CreateTransaction(scriptPubKey, nValue, wtxNew, reservekey, nFeeRequired))
1099     {
1100         string strError;
1101         if (nValue + nFeeRequired > GetBalance())
1102             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());
1103         else
1104             strError = _("Error: Transaction creation failed  ");
1105         printf("SendMoney() : %s", strError.c_str());
1106         return strError;
1107     }
1108
1109     if (fAskFee && !ThreadSafeAskFee(nFeeRequired, _("Sending..."), NULL))
1110         return "ABORTED";
1111
1112     if (!CommitTransaction(wtxNew, reservekey))
1113         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.");
1114
1115     MainFrameRepaint();
1116     return "";
1117 }
1118
1119
1120
1121 string CWallet::SendMoneyToBitcoinAddress(const CBitcoinAddress& address, int64 nValue, CWalletTx& wtxNew, bool fAskFee)
1122 {
1123     // Check amount
1124     if (nValue <= 0)
1125         return _("Invalid amount");
1126     if (nValue + nTransactionFee > GetBalance())
1127         return _("Insufficient funds");
1128
1129     // Parse bitcoin address
1130     CScript scriptPubKey;
1131     scriptPubKey.SetBitcoinAddress(address);
1132
1133     return SendMoney(scriptPubKey, nValue, wtxNew, fAskFee);
1134 }
1135
1136
1137
1138
1139 int CWallet::LoadWallet(bool& fFirstRunRet)
1140 {
1141     if (!fFileBacked)
1142         return false;
1143     fFirstRunRet = false;
1144     int nLoadWalletRet = CWalletDB(strWalletFile,"cr+").LoadWallet(this);
1145     if (nLoadWalletRet != DB_LOAD_OK)
1146         return nLoadWalletRet;
1147     fFirstRunRet = vchDefaultKey.empty();
1148
1149     if (!HaveKey(Hash160(vchDefaultKey)))
1150     {
1151         // Create new keyUser and set as default key
1152         RandAddSeedPerfmon();
1153
1154         std::vector<unsigned char> newDefaultKey;
1155         if (!GetKeyFromPool(newDefaultKey, false))
1156             return DB_LOAD_FAIL;
1157         SetDefaultKey(newDefaultKey);
1158         if (!SetAddressBookName(CBitcoinAddress(vchDefaultKey), ""))
1159             return DB_LOAD_FAIL;
1160     }
1161
1162     CreateThread(ThreadFlushWalletDB, &strWalletFile);
1163     return DB_LOAD_OK;
1164 }
1165
1166
1167 bool CWallet::SetAddressBookName(const CBitcoinAddress& address, const string& strName)
1168 {
1169     mapAddressBook[address] = strName;
1170     if (!fFileBacked)
1171         return false;
1172     return CWalletDB(strWalletFile).WriteName(address.ToString(), strName);
1173 }
1174
1175 bool CWallet::DelAddressBookName(const CBitcoinAddress& address)
1176 {
1177     mapAddressBook.erase(address);
1178     if (!fFileBacked)
1179         return false;
1180     return CWalletDB(strWalletFile).EraseName(address.ToString());
1181 }
1182
1183
1184 void CWallet::PrintWallet(const CBlock& block)
1185 {
1186     CRITICAL_BLOCK(cs_wallet)
1187     {
1188         if (mapWallet.count(block.vtx[0].GetHash()))
1189         {
1190             CWalletTx& wtx = mapWallet[block.vtx[0].GetHash()];
1191             printf("    mine:  %d  %d  %d", wtx.GetDepthInMainChain(), wtx.GetBlocksToMaturity(), wtx.GetCredit());
1192         }
1193     }
1194     printf("\n");
1195 }
1196
1197 bool CWallet::GetTransaction(const uint256 &hashTx, CWalletTx& wtx)
1198 {
1199     CRITICAL_BLOCK(cs_wallet)
1200     {
1201         map<uint256, CWalletTx>::iterator mi = mapWallet.find(hashTx);
1202         if (mi != mapWallet.end())
1203         {
1204             wtx = (*mi).second;
1205             return true;
1206         }
1207     }
1208     return false;
1209 }
1210
1211 bool CWallet::SetDefaultKey(const std::vector<unsigned char> &vchPubKey)
1212 {
1213     if (fFileBacked)
1214     {
1215         if (!CWalletDB(strWalletFile).WriteDefaultKey(vchPubKey))
1216             return false;
1217     }
1218     vchDefaultKey = vchPubKey;
1219     return true;
1220 }
1221
1222 bool GetWalletFile(CWallet* pwallet, string &strWalletFileOut)
1223 {
1224     if (!pwallet->fFileBacked)
1225         return false;
1226     strWalletFileOut = pwallet->strWalletFile;
1227     return true;
1228 }
1229
1230 bool CWallet::TopUpKeyPool()
1231 {
1232     CRITICAL_BLOCK(cs_wallet)
1233     {
1234         if (IsLocked())
1235             return false;
1236
1237         CWalletDB walletdb(strWalletFile);
1238
1239         // Top up key pool
1240         int64 nTargetSize = max(GetArg("-keypool", 100), (int64)0);
1241         while (setKeyPool.size() < nTargetSize+1)
1242         {
1243             int64 nEnd = 1;
1244             if (!setKeyPool.empty())
1245                 nEnd = *(--setKeyPool.end()) + 1;
1246             if (!walletdb.WritePool(nEnd, CKeyPool(GenerateNewKey())))
1247                 throw runtime_error("TopUpKeyPool() : writing generated key failed");
1248             setKeyPool.insert(nEnd);
1249             printf("keypool added key %"PRI64d", size=%d\n", nEnd, setKeyPool.size());
1250         }
1251     }
1252     return true;
1253 }
1254
1255 void CWallet::ReserveKeyFromKeyPool(int64& nIndex, CKeyPool& keypool)
1256 {
1257     nIndex = -1;
1258     keypool.vchPubKey.clear();
1259     CRITICAL_BLOCK(cs_wallet)
1260     {
1261         if (!IsLocked())
1262             TopUpKeyPool();
1263
1264         // Get the oldest key
1265         if(setKeyPool.empty())
1266             return;
1267
1268         CWalletDB walletdb(strWalletFile);
1269
1270         nIndex = *(setKeyPool.begin());
1271         setKeyPool.erase(setKeyPool.begin());
1272         if (!walletdb.ReadPool(nIndex, keypool))
1273             throw runtime_error("ReserveKeyFromKeyPool() : read failed");
1274         if (!HaveKey(Hash160(keypool.vchPubKey)))
1275             throw runtime_error("ReserveKeyFromKeyPool() : unknown key in key pool");
1276         assert(!keypool.vchPubKey.empty());
1277         printf("keypool reserve %"PRI64d"\n", nIndex);
1278     }
1279 }
1280
1281 void CWallet::KeepKey(int64 nIndex)
1282 {
1283     // Remove from key pool
1284     if (fFileBacked)
1285     {
1286         CWalletDB walletdb(strWalletFile);
1287         walletdb.ErasePool(nIndex);
1288     }
1289     printf("keypool keep %"PRI64d"\n", nIndex);
1290 }
1291
1292 void CWallet::ReturnKey(int64 nIndex)
1293 {
1294     // Return to key pool
1295     CRITICAL_BLOCK(cs_wallet)
1296         setKeyPool.insert(nIndex);
1297     printf("keypool return %"PRI64d"\n", nIndex);
1298 }
1299
1300 bool CWallet::GetKeyFromPool(vector<unsigned char>& result, bool fAllowReuse)
1301 {
1302     int64 nIndex = 0;
1303     CKeyPool keypool;
1304     CRITICAL_BLOCK(cs_wallet)
1305     {
1306         ReserveKeyFromKeyPool(nIndex, keypool);
1307         if (nIndex == -1)
1308         {
1309             if (fAllowReuse && !vchDefaultKey.empty())
1310             {
1311                 result = vchDefaultKey;
1312                 return true;
1313             }
1314             if (IsLocked()) return false;
1315             result = GenerateNewKey();
1316             return true;
1317         }
1318         KeepKey(nIndex);
1319         result = keypool.vchPubKey;
1320     }
1321     return true;
1322 }
1323
1324 int64 CWallet::GetOldestKeyPoolTime()
1325 {
1326     int64 nIndex = 0;
1327     CKeyPool keypool;
1328     ReserveKeyFromKeyPool(nIndex, keypool);
1329     if (nIndex == -1)
1330         return GetTime();
1331     ReturnKey(nIndex);
1332     return keypool.nTime;
1333 }
1334
1335 vector<unsigned char> CReserveKey::GetReservedKey()
1336 {
1337     if (nIndex == -1)
1338     {
1339         CKeyPool keypool;
1340         pwallet->ReserveKeyFromKeyPool(nIndex, keypool);
1341         if (nIndex != -1)
1342             vchPubKey = keypool.vchPubKey;
1343         else
1344         {
1345             printf("CReserveKey::GetReservedKey(): Warning: using default key instead of a new key, top up your keypool.");
1346             vchPubKey = pwallet->vchDefaultKey;
1347         }
1348     }
1349     assert(!vchPubKey.empty());
1350     return vchPubKey;
1351 }
1352
1353 void CReserveKey::KeepKey()
1354 {
1355     if (nIndex != -1)
1356         pwallet->KeepKey(nIndex);
1357     nIndex = -1;
1358     vchPubKey.clear();
1359 }
1360
1361 void CReserveKey::ReturnKey()
1362 {
1363     if (nIndex != -1)
1364         pwallet->ReturnKey(nIndex);
1365     nIndex = -1;
1366     vchPubKey.clear();
1367 }
1368