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