Merge branch 'master' of https://github.com/bitcoin/bitcoin
[novacoin.git] / src / wallet.cpp
1 // Copyright (c) 2009-2011 Satoshi Nakamoto & Bitcoin developers
2 // Distributed under the MIT/X11 software license, see the accompanying
3 // file license.txt or http://www.opensource.org/licenses/mit-license.php.
4
5 #include "headers.h"
6 #include "db.h"
7 #include "cryptopp/sha.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_pwalletdbEncryption)
36     {
37         if (pwalletdbEncryption)
38             return pwalletdbEncryption->WriteCryptedKey(vchPubKey, vchCryptedSecret);
39         else
40             return CWalletDB(strWalletFile).WriteCryptedKey(vchPubKey, vchCryptedSecret);
41     }
42 }
43
44 bool CWallet::Unlock(const string& strWalletPassphrase)
45 {
46     CRITICAL_BLOCK(cs_vMasterKey)
47     {
48         if (!IsLocked())
49             return false;
50
51         CCrypter crypter;
52         CKeyingMaterial vMasterKey;
53
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     }
64     return false;
65 }
66
67 bool CWallet::ChangeWalletPassphrase(const string& strOldWalletPassphrase, const string& strNewWalletPassphrase)
68 {
69     CRITICAL_BLOCK(cs_vMasterKey)
70     {
71         bool fWasLocked = IsLocked();
72
73         Lock();
74
75         CCrypter crypter;
76         CKeyingMaterial vMasterKey;
77         BOOST_FOREACH(MasterKeyMap::value_type& pMasterKey, mapMasterKeys)
78         {
79             if(!crypter.SetKeyFromPassphrase(strOldWalletPassphrase, pMasterKey.second.vchSalt, pMasterKey.second.nDeriveIterations, pMasterKey.second.nDerivationMethod))
80                 return false;
81             if(!crypter.Decrypt(pMasterKey.second.vchCryptedKey, vMasterKey))
82                 return false;
83             if (CCryptoKeyStore::Unlock(vMasterKey))
84             {
85                 int64 nStartTime = GetTimeMillis();
86                 crypter.SetKeyFromPassphrase(strNewWalletPassphrase, pMasterKey.second.vchSalt, pMasterKey.second.nDeriveIterations, pMasterKey.second.nDerivationMethod);
87                 pMasterKey.second.nDeriveIterations = pMasterKey.second.nDeriveIterations * (100 / ((double)(GetTimeMillis() - nStartTime)));
88
89                 nStartTime = GetTimeMillis();
90                 crypter.SetKeyFromPassphrase(strNewWalletPassphrase, pMasterKey.second.vchSalt, pMasterKey.second.nDeriveIterations, pMasterKey.second.nDerivationMethod);
91                 pMasterKey.second.nDeriveIterations = (pMasterKey.second.nDeriveIterations + pMasterKey.second.nDeriveIterations * 100 / ((double)(GetTimeMillis() - nStartTime))) / 2;
92
93                 if (pMasterKey.second.nDeriveIterations < 25000)
94                     pMasterKey.second.nDeriveIterations = 25000;
95
96                 printf("Wallet passphrase changed to an nDeriveIterations of %i\n", pMasterKey.second.nDeriveIterations);
97
98                 if (!crypter.SetKeyFromPassphrase(strNewWalletPassphrase, pMasterKey.second.vchSalt, pMasterKey.second.nDeriveIterations, pMasterKey.second.nDerivationMethod))
99                     return false;
100                 if (!crypter.Encrypt(vMasterKey, pMasterKey.second.vchCryptedKey))
101                     return false;
102                 CWalletDB(strWalletFile).WriteMasterKey(pMasterKey.first, pMasterKey.second);
103                 if (fWasLocked)
104                     Lock();
105                 return true;
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     CRITICAL_BLOCK(cs_mapPubKeys)
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(PubKeyToAddress(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<string, int64> >& listReceived,
411                            list<pair<string, 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         string address;
440         uint160 hash160;
441         vector<unsigned char> vchPubKey;
442         if (ExtractHash160(txout.scriptPubKey, hash160))
443             address = Hash160ToAddress(hash160);
444         else if (ExtractPubKey(txout.scriptPubKey, NULL, vchPubKey))
445             address = PubKeyToAddress(vchPubKey);
446         else
447         {
448             printf("CWalletTx::GetAmounts: Unknown transaction type found, txid %s\n",
449                    this->GetHash().ToString().c_str());
450             address = " unknown ";
451         }
452
453         // Don't report 'change' txouts
454         if (nDebit > 0 && pwallet->IsChange(txout))
455             continue;
456
457         if (nDebit > 0)
458             listSent.push_back(make_pair(address, txout.nValue));
459
460         if (pwallet->IsMine(txout))
461             listReceived.push_back(make_pair(address, txout.nValue));
462     }
463
464 }
465
466 void CWalletTx::GetAccountAmounts(const string& strAccount, int64& nGenerated, int64& nReceived, 
467                                   int64& nSent, int64& nFee) const
468 {
469     nGenerated = nReceived = nSent = nFee = 0;
470
471     int64 allGeneratedImmature, allGeneratedMature, allFee;
472     allGeneratedImmature = allGeneratedMature = allFee = 0;
473     string strSentAccount;
474     list<pair<string, int64> > listReceived;
475     list<pair<string, int64> > listSent;
476     GetAmounts(allGeneratedImmature, allGeneratedMature, listReceived, listSent, allFee, strSentAccount);
477
478     if (strAccount == "")
479         nGenerated = allGeneratedMature;
480     if (strAccount == strSentAccount)
481     {
482         BOOST_FOREACH(const PAIRTYPE(string,int64)& s, listSent)
483             nSent += s.second;
484         nFee = allFee;
485     }
486     CRITICAL_BLOCK(pwallet->cs_mapAddressBook)
487     {
488         BOOST_FOREACH(const PAIRTYPE(string,int64)& r, listReceived)
489         {
490             if (pwallet->mapAddressBook.count(r.first))
491             {
492                 map<string, string>::const_iterator mi = pwallet->mapAddressBook.find(r.first);
493                 if (mi != pwallet->mapAddressBook.end() && (*mi).second == strAccount)
494                     nReceived += r.second;
495             }
496             else if (strAccount.empty())
497             {
498                 nReceived += r.second;
499             }
500         }
501     }
502 }
503
504 void CWalletTx::AddSupportingTransactions(CTxDB& txdb)
505 {
506     vtxPrev.clear();
507
508     const int COPY_DEPTH = 3;
509     if (SetMerkleBranch() < COPY_DEPTH)
510     {
511         vector<uint256> vWorkQueue;
512         BOOST_FOREACH(const CTxIn& txin, vin)
513             vWorkQueue.push_back(txin.prevout.hash);
514
515         // This critsect is OK because txdb is already open
516         CRITICAL_BLOCK(pwallet->cs_mapWallet)
517         {
518             map<uint256, const CMerkleTx*> mapWalletPrev;
519             set<uint256> setAlreadyDone;
520             for (int i = 0; i < vWorkQueue.size(); i++)
521             {
522                 uint256 hash = vWorkQueue[i];
523                 if (setAlreadyDone.count(hash))
524                     continue;
525                 setAlreadyDone.insert(hash);
526
527                 CMerkleTx tx;
528                 map<uint256, CWalletTx>::const_iterator mi = pwallet->mapWallet.find(hash);
529                 if (mi != pwallet->mapWallet.end())
530                 {
531                     tx = (*mi).second;
532                     BOOST_FOREACH(const CMerkleTx& txWalletPrev, (*mi).second.vtxPrev)
533                         mapWalletPrev[txWalletPrev.GetHash()] = &txWalletPrev;
534                 }
535                 else if (mapWalletPrev.count(hash))
536                 {
537                     tx = *mapWalletPrev[hash];
538                 }
539                 else if (!fClient && txdb.ReadDiskTx(hash, tx))
540                 {
541                     ;
542                 }
543                 else
544                 {
545                     printf("ERROR: AddSupportingTransactions() : unsupported transaction\n");
546                     continue;
547                 }
548
549                 int nDepth = tx.SetMerkleBranch();
550                 vtxPrev.push_back(tx);
551
552                 if (nDepth < COPY_DEPTH)
553                     BOOST_FOREACH(const CTxIn& txin, tx.vin)
554                         vWorkQueue.push_back(txin.prevout.hash);
555             }
556         }
557     }
558
559     reverse(vtxPrev.begin(), vtxPrev.end());
560 }
561
562 bool CWalletTx::WriteToDisk()
563 {
564     return CWalletDB(pwallet->strWalletFile).WriteTx(GetHash(), *this);
565 }
566
567 int CWallet::ScanForWalletTransactions(CBlockIndex* pindexStart, bool fUpdate)
568 {
569     int ret = 0;
570
571     CBlockIndex* pindex = pindexStart;
572     CRITICAL_BLOCK(cs_mapWallet)
573     {
574         while (pindex)
575         {
576             CBlock block;
577             block.ReadFromDisk(pindex, true);
578             BOOST_FOREACH(CTransaction& tx, block.vtx)
579             {
580                 if (AddToWalletIfInvolvingMe(tx, &block, fUpdate))
581                     ret++;
582             }
583             pindex = pindex->pnext;
584         }
585     }
586     return ret;
587 }
588
589 void CWallet::ReacceptWalletTransactions()
590 {
591     CTxDB txdb("r");
592     bool fRepeat = true;
593     while (fRepeat) CRITICAL_BLOCK(cs_mapWallet)
594     {
595         fRepeat = false;
596         vector<CDiskTxPos> vMissingTx;
597         BOOST_FOREACH(PAIRTYPE(const uint256, CWalletTx)& item, mapWallet)
598         {
599             CWalletTx& wtx = item.second;
600             if (wtx.IsCoinBase() && wtx.IsSpent(0))
601                 continue;
602
603             CTxIndex txindex;
604             bool fUpdated = false;
605             if (txdb.ReadTxIndex(wtx.GetHash(), txindex))
606             {
607                 // Update fSpent if a tx got spent somewhere else by a copy of wallet.dat
608                 if (txindex.vSpent.size() != wtx.vout.size())
609                 {
610                     printf("ERROR: ReacceptWalletTransactions() : txindex.vSpent.size() %d != wtx.vout.size() %d\n", txindex.vSpent.size(), wtx.vout.size());
611                     continue;
612                 }
613                 for (int i = 0; i < txindex.vSpent.size(); i++)
614                 {
615                     if (wtx.IsSpent(i))
616                         continue;
617                     if (!txindex.vSpent[i].IsNull() && IsMine(wtx.vout[i]))
618                     {
619                         wtx.MarkSpent(i);
620                         fUpdated = true;
621                         vMissingTx.push_back(txindex.vSpent[i]);
622                     }
623                 }
624                 if (fUpdated)
625                 {
626                     printf("ReacceptWalletTransactions found spent coin %sbc %s\n", FormatMoney(wtx.GetCredit()).c_str(), wtx.GetHash().ToString().c_str());
627                     wtx.MarkDirty();
628                     wtx.WriteToDisk();
629                 }
630             }
631             else
632             {
633                 // Reaccept any txes of ours that aren't already in a block
634                 if (!wtx.IsCoinBase())
635                     wtx.AcceptWalletTransaction(txdb, false);
636             }
637         }
638         if (!vMissingTx.empty())
639         {
640             // TODO: optimize this to scan just part of the block chain?
641             if (ScanForWalletTransactions(pindexGenesisBlock))
642                 fRepeat = true;  // Found missing transactions: re-do Reaccept.
643         }
644     }
645 }
646
647 void CWalletTx::RelayWalletTransaction(CTxDB& txdb)
648 {
649     BOOST_FOREACH(const CMerkleTx& tx, vtxPrev)
650     {
651         if (!tx.IsCoinBase())
652         {
653             uint256 hash = tx.GetHash();
654             if (!txdb.ContainsTx(hash))
655                 RelayMessage(CInv(MSG_TX, hash), (CTransaction)tx);
656         }
657     }
658     if (!IsCoinBase())
659     {
660         uint256 hash = GetHash();
661         if (!txdb.ContainsTx(hash))
662         {
663             printf("Relaying wtx %s\n", hash.ToString().substr(0,10).c_str());
664             RelayMessage(CInv(MSG_TX, hash), (CTransaction)*this);
665         }
666     }
667 }
668
669 void CWalletTx::RelayWalletTransaction()
670 {
671    CTxDB txdb("r");
672    RelayWalletTransaction(txdb);
673 }
674
675 void CWallet::ResendWalletTransactions()
676 {
677     // Do this infrequently and randomly to avoid giving away
678     // that these are our transactions.
679     static int64 nNextTime;
680     if (GetTime() < nNextTime)
681         return;
682     bool fFirst = (nNextTime == 0);
683     nNextTime = GetTime() + GetRand(30 * 60);
684     if (fFirst)
685         return;
686
687     // Only do it if there's been a new block since last time
688     static int64 nLastTime;
689     if (nTimeBestReceived < nLastTime)
690         return;
691     nLastTime = GetTime();
692
693     // Rebroadcast any of our txes that aren't in a block yet
694     printf("ResendWalletTransactions()\n");
695     CTxDB txdb("r");
696     CRITICAL_BLOCK(cs_mapWallet)
697     {
698         // Sort them in chronological order
699         multimap<unsigned int, CWalletTx*> mapSorted;
700         BOOST_FOREACH(PAIRTYPE(const uint256, CWalletTx)& item, mapWallet)
701         {
702             CWalletTx& wtx = item.second;
703             // Don't rebroadcast until it's had plenty of time that
704             // it should have gotten in already by now.
705             if (nTimeBestReceived - (int64)wtx.nTimeReceived > 5 * 60)
706                 mapSorted.insert(make_pair(wtx.nTimeReceived, &wtx));
707         }
708         BOOST_FOREACH(PAIRTYPE(const unsigned int, CWalletTx*)& item, mapSorted)
709         {
710             CWalletTx& wtx = *item.second;
711             wtx.RelayWalletTransaction(txdb);
712         }
713     }
714 }
715
716
717
718
719
720
721 //////////////////////////////////////////////////////////////////////////////
722 //
723 // Actions
724 //
725
726
727 int64 CWallet::GetBalance() const
728 {
729     int64 nTotal = 0;
730     CRITICAL_BLOCK(cs_mapWallet)
731     {
732         for (map<uint256, CWalletTx>::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
733         {
734             const CWalletTx* pcoin = &(*it).second;
735             if (!pcoin->IsFinal() || !pcoin->IsConfirmed())
736                 continue;
737             nTotal += pcoin->GetAvailableCredit();
738         }
739     }
740
741     return nTotal;
742 }
743
744 int64 CWallet::GetUnconfirmedBalance() const
745 {
746     int64 nTotal = 0;
747     CRITICAL_BLOCK(cs_mapWallet)
748     {
749         for (map<uint256, CWalletTx>::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
750         {
751             const CWalletTx* pcoin = &(*it).second;
752             if (pcoin->IsFinal() && pcoin->IsConfirmed())
753                 continue;
754             nTotal += pcoin->GetAvailableCredit();
755         }
756     }
757     return nTotal;
758 }
759
760 bool CWallet::SelectCoinsMinConf(int64 nTargetValue, int nConfMine, int nConfTheirs, set<pair<const CWalletTx*,unsigned int> >& setCoinsRet, int64& nValueRet) const
761 {
762     setCoinsRet.clear();
763     nValueRet = 0;
764
765     // List of values less than target
766     pair<int64, pair<const CWalletTx*,unsigned int> > coinLowestLarger;
767     coinLowestLarger.first = INT64_MAX;
768     coinLowestLarger.second.first = NULL;
769     vector<pair<int64, pair<const CWalletTx*,unsigned int> > > vValue;
770     int64 nTotalLower = 0;
771
772     CRITICAL_BLOCK(cs_mapWallet)
773     {
774        vector<const CWalletTx*> vCoins;
775        vCoins.reserve(mapWallet.size());
776        for (map<uint256, CWalletTx>::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
777            vCoins.push_back(&(*it).second);
778        random_shuffle(vCoins.begin(), vCoins.end(), GetRandInt);
779
780        BOOST_FOREACH(const CWalletTx* pcoin, vCoins)
781        {
782             if (!pcoin->IsFinal() || !pcoin->IsConfirmed())
783                 continue;
784
785             if (pcoin->IsCoinBase() && pcoin->GetBlocksToMaturity() > 0)
786                 continue;
787
788             int nDepth = pcoin->GetDepthInMainChain();
789             if (nDepth < (pcoin->IsFromMe() ? nConfMine : nConfTheirs))
790                 continue;
791
792             for (int i = 0; i < pcoin->vout.size(); i++)
793             {
794                 if (pcoin->IsSpent(i) || !IsMine(pcoin->vout[i]))
795                     continue;
796
797                 int64 n = pcoin->vout[i].nValue;
798
799                 if (n <= 0)
800                     continue;
801
802                 pair<int64,pair<const CWalletTx*,unsigned int> > coin = make_pair(n,make_pair(pcoin,i));
803
804                 if (n == nTargetValue)
805                 {
806                     setCoinsRet.insert(coin.second);
807                     nValueRet += coin.first;
808                     return true;
809                 }
810                 else if (n < nTargetValue + CENT)
811                 {
812                     vValue.push_back(coin);
813                     nTotalLower += n;
814                 }
815                 else if (n < coinLowestLarger.first)
816                 {
817                     coinLowestLarger = coin;
818                 }
819             }
820         }
821     }
822
823     if (nTotalLower == nTargetValue || nTotalLower == nTargetValue + CENT)
824     {
825         for (int i = 0; i < vValue.size(); ++i)
826         {
827             setCoinsRet.insert(vValue[i].second);
828             nValueRet += vValue[i].first;
829         }
830         return true;
831     }
832
833     if (nTotalLower < nTargetValue + (coinLowestLarger.second.first ? CENT : 0))
834     {
835         if (coinLowestLarger.second.first == NULL)
836             return false;
837         setCoinsRet.insert(coinLowestLarger.second);
838         nValueRet += coinLowestLarger.first;
839         return true;
840     }
841
842     if (nTotalLower >= nTargetValue + CENT)
843         nTargetValue += CENT;
844
845     // Solve subset sum by stochastic approximation
846     sort(vValue.rbegin(), vValue.rend());
847     vector<char> vfIncluded;
848     vector<char> vfBest(vValue.size(), true);
849     int64 nBest = nTotalLower;
850
851     for (int nRep = 0; nRep < 1000 && nBest != nTargetValue; nRep++)
852     {
853         vfIncluded.assign(vValue.size(), false);
854         int64 nTotal = 0;
855         bool fReachedTarget = false;
856         for (int nPass = 0; nPass < 2 && !fReachedTarget; nPass++)
857         {
858             for (int i = 0; i < vValue.size(); i++)
859             {
860                 if (nPass == 0 ? rand() % 2 : !vfIncluded[i])
861                 {
862                     nTotal += vValue[i].first;
863                     vfIncluded[i] = true;
864                     if (nTotal >= nTargetValue)
865                     {
866                         fReachedTarget = true;
867                         if (nTotal < nBest)
868                         {
869                             nBest = nTotal;
870                             vfBest = vfIncluded;
871                         }
872                         nTotal -= vValue[i].first;
873                         vfIncluded[i] = false;
874                     }
875                 }
876             }
877         }
878     }
879
880     // If the next larger is still closer, return it
881     if (coinLowestLarger.second.first && coinLowestLarger.first - nTargetValue <= nBest - nTargetValue)
882     {
883         setCoinsRet.insert(coinLowestLarger.second);
884         nValueRet += coinLowestLarger.first;
885     }
886     else {
887         for (int i = 0; i < vValue.size(); i++)
888             if (vfBest[i])
889             {
890                 setCoinsRet.insert(vValue[i].second);
891                 nValueRet += vValue[i].first;
892             }
893
894         //// debug print
895         printf("SelectCoins() best subset: ");
896         for (int i = 0; i < vValue.size(); i++)
897             if (vfBest[i])
898                 printf("%s ", FormatMoney(vValue[i].first).c_str());
899         printf("total %s\n", FormatMoney(nBest).c_str());
900     }
901
902     return true;
903 }
904
905 bool CWallet::SelectCoins(int64 nTargetValue, set<pair<const CWalletTx*,unsigned int> >& setCoinsRet, int64& nValueRet) const
906 {
907     return (SelectCoinsMinConf(nTargetValue, 1, 6, setCoinsRet, nValueRet) ||
908             SelectCoinsMinConf(nTargetValue, 1, 1, setCoinsRet, nValueRet) ||
909             SelectCoinsMinConf(nTargetValue, 0, 1, setCoinsRet, nValueRet));
910 }
911
912
913
914
915 bool CWallet::CreateTransaction(const vector<pair<CScript, int64> >& vecSend, CWalletTx& wtxNew, CReserveKey& reservekey, int64& nFeeRet)
916 {
917     int64 nValue = 0;
918     BOOST_FOREACH (const PAIRTYPE(CScript, int64)& s, vecSend)
919     {
920         if (nValue < 0)
921             return false;
922         nValue += s.second;
923     }
924     if (vecSend.empty() || nValue < 0)
925         return false;
926
927     wtxNew.pwallet = this;
928
929     CRITICAL_BLOCK(cs_main)
930     {
931         // txdb must be opened before the mapWallet lock
932         CTxDB txdb("r");
933         CRITICAL_BLOCK(cs_mapWallet)
934         {
935             nFeeRet = nTransactionFee;
936             loop
937             {
938                 wtxNew.vin.clear();
939                 wtxNew.vout.clear();
940                 wtxNew.fFromMe = true;
941
942                 int64 nTotalValue = nValue + nFeeRet;
943                 double dPriority = 0;
944                 // vouts to the payees
945                 BOOST_FOREACH (const PAIRTYPE(CScript, int64)& s, vecSend)
946                     wtxNew.vout.push_back(CTxOut(s.second, s.first));
947
948                 // Choose coins to use
949                 set<pair<const CWalletTx*,unsigned int> > setCoins;
950                 int64 nValueIn = 0;
951                 if (!SelectCoins(nTotalValue, setCoins, nValueIn))
952                     return false;
953                 BOOST_FOREACH(PAIRTYPE(const CWalletTx*, unsigned int) pcoin, setCoins)
954                 {
955                     int64 nCredit = pcoin.first->vout[pcoin.second].nValue;
956                     dPriority += (double)nCredit * pcoin.first->GetDepthInMainChain();
957                 }
958
959                 // Fill a vout back to self with any change
960                 int64 nChange = nValueIn - nTotalValue;
961                 if (nChange >= CENT)
962                 {
963                     // Note: We use a new key here to keep it from being obvious which side is the change.
964                     //  The drawback is that by not reusing a previous key, the change may be lost if a
965                     //  backup is restored, if the backup doesn't have the new private key for the change.
966                     //  If we reused the old key, it would be possible to add code to look for and
967                     //  rediscover unknown transactions that were written with keys of ours to recover
968                     //  post-backup change.
969
970                     // Reserve a new key pair from key pool
971                     vector<unsigned char> vchPubKey = reservekey.GetReservedKey();
972                     // assert(mapKeys.count(vchPubKey));
973
974                     // Fill a vout to ourself, using same address type as the payment
975                     CScript scriptChange;
976                     if (vecSend[0].first.GetBitcoinAddressHash160() != 0)
977                         scriptChange.SetBitcoinAddress(vchPubKey);
978                     else
979                         scriptChange << vchPubKey << OP_CHECKSIG;
980
981                     // Insert change txn at random position:
982                     vector<CTxOut>::iterator position = wtxNew.vout.begin()+GetRandInt(wtxNew.vout.size());
983                     wtxNew.vout.insert(position, CTxOut(nChange, scriptChange));
984                 }
985                 else
986                     reservekey.ReturnKey();
987
988                 // Fill vin
989                 BOOST_FOREACH(const PAIRTYPE(const CWalletTx*,unsigned int)& coin, setCoins)
990                     wtxNew.vin.push_back(CTxIn(coin.first->GetHash(),coin.second));
991
992                 // Sign
993                 int nIn = 0;
994                 BOOST_FOREACH(const PAIRTYPE(const CWalletTx*,unsigned int)& coin, setCoins)
995                     if (!SignSignature(*this, *coin.first, wtxNew, nIn++))
996                         return false;
997
998                 // Limit size
999                 unsigned int nBytes = ::GetSerializeSize(*(CTransaction*)&wtxNew, SER_NETWORK);
1000                 if (nBytes >= MAX_BLOCK_SIZE_GEN/5)
1001                     return false;
1002                 dPriority /= nBytes;
1003
1004                 // Check that enough fee is included
1005                 int64 nPayFee = nTransactionFee * (1 + (int64)nBytes / 1000);
1006                 bool fAllowFree = CTransaction::AllowFree(dPriority);
1007                 int64 nMinFee = wtxNew.GetMinFee(1, fAllowFree);
1008                 if (nFeeRet < max(nPayFee, nMinFee))
1009                 {
1010                     nFeeRet = max(nPayFee, nMinFee);
1011                     continue;
1012                 }
1013
1014                 // Fill vtxPrev by copying from previous transactions vtxPrev
1015                 wtxNew.AddSupportingTransactions(txdb);
1016                 wtxNew.fTimeReceivedIsTxTime = true;
1017
1018                 break;
1019             }
1020         }
1021     }
1022     return true;
1023 }
1024
1025 bool CWallet::CreateTransaction(CScript scriptPubKey, int64 nValue, CWalletTx& wtxNew, CReserveKey& reservekey, int64& nFeeRet)
1026 {
1027     vector< pair<CScript, int64> > vecSend;
1028     vecSend.push_back(make_pair(scriptPubKey, nValue));
1029     return CreateTransaction(vecSend, wtxNew, reservekey, nFeeRet);
1030 }
1031
1032 // Call after CreateTransaction unless you want to abort
1033 bool CWallet::CommitTransaction(CWalletTx& wtxNew, CReserveKey& reservekey)
1034 {
1035     CRITICAL_BLOCK(cs_main)
1036     {
1037         printf("CommitTransaction:\n%s", wtxNew.ToString().c_str());
1038         CRITICAL_BLOCK(cs_mapWallet)
1039         {
1040             // This is only to keep the database open to defeat the auto-flush for the
1041             // duration of this scope.  This is the only place where this optimization
1042             // maybe makes sense; please don't do it anywhere else.
1043             CWalletDB* pwalletdb = fFileBacked ? new CWalletDB(strWalletFile,"r") : NULL;
1044
1045             // Take key pair from key pool so it won't be used again
1046             reservekey.KeepKey();
1047
1048             // Add tx to wallet, because if it has change it's also ours,
1049             // otherwise just for transaction history.
1050             AddToWallet(wtxNew);
1051
1052             // Mark old coins as spent
1053             set<CWalletTx*> setCoins;
1054             BOOST_FOREACH(const CTxIn& txin, wtxNew.vin)
1055             {
1056                 CWalletTx &coin = mapWallet[txin.prevout.hash];
1057                 coin.pwallet = this;
1058                 coin.MarkSpent(txin.prevout.n);
1059                 coin.WriteToDisk();
1060                 vWalletUpdated.push_back(coin.GetHash());
1061             }
1062
1063             if (fFileBacked)
1064                 delete pwalletdb;
1065         }
1066
1067         // Track how many getdata requests our transaction gets
1068         CRITICAL_BLOCK(cs_mapRequestCount)
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 // requires cs_main lock
1088 string CWallet::SendMoney(CScript scriptPubKey, int64 nValue, CWalletTx& wtxNew, bool fAskFee)
1089 {
1090     CReserveKey reservekey(this);
1091     int64 nFeeRequired;
1092     CRITICAL_BLOCK(cs_vMasterKey)
1093     {
1094         if (IsLocked())
1095         {
1096             string strError = _("Error: Wallet locked, unable to create transaction  ");
1097             printf("SendMoney() : %s", strError.c_str());
1098             return strError;
1099         }
1100         if (!CreateTransaction(scriptPubKey, nValue, wtxNew, reservekey, nFeeRequired))
1101         {
1102             string strError;
1103             if (nValue + nFeeRequired > GetBalance())
1104                 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());
1105             else
1106                 strError = _("Error: Transaction creation failed  ");
1107             printf("SendMoney() : %s", strError.c_str());
1108             return strError;
1109         }
1110     }
1111
1112     if (fAskFee && !ThreadSafeAskFee(nFeeRequired, _("Sending..."), NULL))
1113         return "ABORTED";
1114
1115     if (!CommitTransaction(wtxNew, reservekey))
1116         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.");
1117
1118     MainFrameRepaint();
1119     return "";
1120 }
1121
1122
1123
1124 // requires cs_main lock
1125 string CWallet::SendMoneyToBitcoinAddress(string strAddress, int64 nValue, CWalletTx& wtxNew, bool fAskFee)
1126 {
1127     // Check amount
1128     if (nValue <= 0)
1129         return _("Invalid amount");
1130     if (nValue + nTransactionFee > GetBalance())
1131         return _("Insufficient funds");
1132
1133     // Parse bitcoin address
1134     CScript scriptPubKey;
1135     if (!scriptPubKey.SetBitcoinAddress(strAddress))
1136         return _("Invalid bitcoin address");
1137
1138     return SendMoney(scriptPubKey, nValue, wtxNew, fAskFee);
1139 }
1140
1141
1142
1143
1144 int CWallet::LoadWallet(bool& fFirstRunRet)
1145 {
1146     if (!fFileBacked)
1147         return false;
1148     fFirstRunRet = false;
1149     int nLoadWalletRet = CWalletDB(strWalletFile,"cr+").LoadWallet(this);
1150     if (nLoadWalletRet != DB_LOAD_OK)
1151         return nLoadWalletRet;
1152     fFirstRunRet = vchDefaultKey.empty();
1153
1154     if (!HaveKey(vchDefaultKey))
1155     {
1156         // Create new keyUser and set as default key
1157         RandAddSeedPerfmon();
1158
1159         SetDefaultKey(GetOrReuseKeyFromPool());
1160         if (!SetAddressBookName(PubKeyToAddress(vchDefaultKey), ""))
1161             return DB_LOAD_FAIL;
1162     }
1163
1164     CreateThread(ThreadFlushWalletDB, &strWalletFile);
1165     return DB_LOAD_OK;
1166 }
1167
1168
1169 bool CWallet::SetAddressBookName(const string& strAddress, const string& strName)
1170 {
1171     mapAddressBook[strAddress] = strName;
1172     if (!fFileBacked)
1173         return false;
1174     return CWalletDB(strWalletFile).WriteName(strAddress, strName);
1175 }
1176
1177 bool CWallet::DelAddressBookName(const string& strAddress)
1178 {
1179     mapAddressBook.erase(strAddress);
1180     if (!fFileBacked)
1181         return false;
1182     return CWalletDB(strWalletFile).EraseName(strAddress);
1183 }
1184
1185
1186 void CWallet::PrintWallet(const CBlock& block)
1187 {
1188     CRITICAL_BLOCK(cs_mapWallet)
1189     {
1190         if (mapWallet.count(block.vtx[0].GetHash()))
1191         {
1192             CWalletTx& wtx = mapWallet[block.vtx[0].GetHash()];
1193             printf("    mine:  %d  %d  %d", wtx.GetDepthInMainChain(), wtx.GetBlocksToMaturity(), wtx.GetCredit());
1194         }
1195     }
1196     printf("\n");
1197 }
1198
1199 bool CWallet::GetTransaction(const uint256 &hashTx, CWalletTx& wtx)
1200 {
1201     CRITICAL_BLOCK(cs_mapWallet)
1202     {
1203         map<uint256, CWalletTx>::iterator mi = mapWallet.find(hashTx);
1204         if (mi != mapWallet.end())
1205         {
1206             wtx = (*mi).second;
1207             return true;
1208         }
1209     }
1210     return false;
1211 }
1212
1213 bool CWallet::SetDefaultKey(const std::vector<unsigned char> &vchPubKey)
1214 {
1215     if (fFileBacked)
1216     {
1217         if (!CWalletDB(strWalletFile).WriteDefaultKey(vchPubKey))
1218             return false;
1219     }
1220     vchDefaultKey = vchPubKey;
1221     return true;
1222 }
1223
1224 bool GetWalletFile(CWallet* pwallet, string &strWalletFileOut)
1225 {
1226     if (!pwallet->fFileBacked)
1227         return false;
1228     strWalletFileOut = pwallet->strWalletFile;
1229     return true;
1230 }
1231
1232 bool CWallet::TopUpKeyPool()
1233 {
1234     CRITICAL_BLOCK(cs_main)
1235     CRITICAL_BLOCK(cs_mapWallet)
1236     CRITICAL_BLOCK(cs_setKeyPool)
1237     CRITICAL_BLOCK(cs_vMasterKey)
1238     {
1239         if (IsLocked())
1240             return false;
1241
1242         CWalletDB walletdb(strWalletFile);
1243
1244         // Top up key pool
1245         int64 nTargetSize = max(GetArg("-keypool", 100), (int64)0);
1246         while (setKeyPool.size() < nTargetSize+1)
1247         {
1248             int64 nEnd = 1;
1249             if (!setKeyPool.empty())
1250                 nEnd = *(--setKeyPool.end()) + 1;
1251             if (!walletdb.WritePool(nEnd, CKeyPool(GenerateNewKey())))
1252                 throw runtime_error("TopUpKeyPool() : writing generated key failed");
1253             setKeyPool.insert(nEnd);
1254             printf("keypool added key %"PRI64d", size=%d\n", nEnd, setKeyPool.size());
1255         }
1256     }
1257     return true;
1258 }
1259
1260 void CWallet::ReserveKeyFromKeyPool(int64& nIndex, CKeyPool& keypool)
1261 {
1262     nIndex = -1;
1263     keypool.vchPubKey.clear();
1264     CRITICAL_BLOCK(cs_main)
1265     CRITICAL_BLOCK(cs_mapWallet)
1266     CRITICAL_BLOCK(cs_setKeyPool)
1267     {
1268         if (!IsLocked())
1269             TopUpKeyPool();
1270
1271         // Get the oldest key
1272         if(setKeyPool.empty())
1273             return;
1274
1275         CWalletDB walletdb(strWalletFile);
1276
1277         nIndex = *(setKeyPool.begin());
1278         setKeyPool.erase(setKeyPool.begin());
1279         if (!walletdb.ReadPool(nIndex, keypool))
1280             throw runtime_error("ReserveKeyFromKeyPool() : read failed");
1281         if (!HaveKey(keypool.vchPubKey))
1282             throw runtime_error("ReserveKeyFromKeyPool() : unknown key in key pool");
1283         assert(!keypool.vchPubKey.empty());
1284         printf("keypool reserve %"PRI64d"\n", nIndex);
1285     }
1286 }
1287
1288 void CWallet::KeepKey(int64 nIndex)
1289 {
1290     // Remove from key pool
1291     if (fFileBacked)
1292     {
1293         CWalletDB walletdb(strWalletFile);
1294         CRITICAL_BLOCK(cs_main)
1295         {
1296             walletdb.ErasePool(nIndex);
1297         }
1298     }
1299     printf("keypool keep %"PRI64d"\n", nIndex);
1300 }
1301
1302 void CWallet::ReturnKey(int64 nIndex)
1303 {
1304     // Return to key pool
1305     CRITICAL_BLOCK(cs_setKeyPool)
1306         setKeyPool.insert(nIndex);
1307     printf("keypool return %"PRI64d"\n", nIndex);
1308 }
1309
1310 vector<unsigned char> CWallet::GetOrReuseKeyFromPool()
1311 {
1312     int64 nIndex = 0;
1313     CKeyPool keypool;
1314     ReserveKeyFromKeyPool(nIndex, keypool);
1315     if(nIndex == -1)
1316         return vchDefaultKey;
1317     KeepKey(nIndex);
1318     return keypool.vchPubKey;
1319 }
1320
1321 int64 CWallet::GetOldestKeyPoolTime()
1322 {
1323     int64 nIndex = 0;
1324     CKeyPool keypool;
1325     ReserveKeyFromKeyPool(nIndex, keypool);
1326     if (nIndex == -1)
1327         return GetTime();
1328     ReturnKey(nIndex);
1329     return keypool.nTime;
1330 }
1331
1332 vector<unsigned char> CReserveKey::GetReservedKey()
1333 {
1334     if (nIndex == -1)
1335     {
1336         CKeyPool keypool;
1337         pwallet->ReserveKeyFromKeyPool(nIndex, keypool);
1338         if (nIndex != -1)
1339             vchPubKey = keypool.vchPubKey;
1340         else
1341         {
1342             printf("CReserveKey::GetReservedKey(): Warning: using default key instead of a new key, top up your keypool.");
1343             vchPubKey = pwallet->vchDefaultKey;
1344         }
1345     }
1346     assert(!vchPubKey.empty());
1347     return vchPubKey;
1348 }
1349
1350 void CReserveKey::KeepKey()
1351 {
1352     if (nIndex != -1)
1353         pwallet->KeepKey(nIndex);
1354     nIndex = -1;
1355     vchPubKey.clear();
1356 }
1357
1358 void CReserveKey::ReturnKey()
1359 {
1360     if (nIndex != -1)
1361         pwallet->ReturnKey(nIndex);
1362     nIndex = -1;
1363     vchPubKey.clear();
1364 }
1365