fix warning: control reaches end of non-void function [-Wreturn-type]
[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
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                 SetDefaultKey(GetOrReuseKeyFromPool());
273         }
274
275         // Notify UI
276         vWalletUpdated.push_back(hash);
277
278         // since AddToWallet is called directly for self-originating transactions, check for consumption of own coins
279         WalletUpdateSpent(wtx);
280     }
281
282     // Refresh UI
283     MainFrameRepaint();
284     return true;
285 }
286
287 bool CWallet::AddToWalletIfInvolvingMe(const CTransaction& tx, const CBlock* pblock, bool fUpdate)
288 {
289     uint256 hash = tx.GetHash();
290     bool fExisted = mapWallet.count(hash);
291     if (fExisted && !fUpdate) return false;
292     if (fExisted || IsMine(tx) || IsFromMe(tx))
293     {
294         CWalletTx wtx(this,tx);
295         // Get merkle branch if transaction was found in a block
296         if (pblock)
297             wtx.SetMerkleBranch(pblock);
298         return AddToWallet(wtx);
299     }
300     else
301         WalletUpdateSpent(tx);
302     return false;
303 }
304
305 bool CWallet::EraseFromWallet(uint256 hash)
306 {
307     if (!fFileBacked)
308         return false;
309     CRITICAL_BLOCK(cs_mapWallet)
310     {
311         if (mapWallet.erase(hash))
312             CWalletDB(strWalletFile).EraseTx(hash);
313     }
314     return true;
315 }
316
317
318 bool CWallet::IsMine(const CTxIn &txin) const
319 {
320     CRITICAL_BLOCK(cs_mapWallet)
321     {
322         map<uint256, CWalletTx>::const_iterator mi = mapWallet.find(txin.prevout.hash);
323         if (mi != mapWallet.end())
324         {
325             const CWalletTx& prev = (*mi).second;
326             if (txin.prevout.n < prev.vout.size())
327                 if (IsMine(prev.vout[txin.prevout.n]))
328                     return true;
329         }
330     }
331     return false;
332 }
333
334 int64 CWallet::GetDebit(const CTxIn &txin) const
335 {
336     CRITICAL_BLOCK(cs_mapWallet)
337     {
338         map<uint256, CWalletTx>::const_iterator mi = mapWallet.find(txin.prevout.hash);
339         if (mi != mapWallet.end())
340         {
341             const CWalletTx& prev = (*mi).second;
342             if (txin.prevout.n < prev.vout.size())
343                 if (IsMine(prev.vout[txin.prevout.n]))
344                     return prev.vout[txin.prevout.n].nValue;
345         }
346     }
347     return 0;
348 }
349
350 int64 CWalletTx::GetTxTime() const
351 {
352     if (!fTimeReceivedIsTxTime && hashBlock != 0)
353     {
354         // If we did not receive the transaction directly, we rely on the block's
355         // time to figure out when it happened.  We use the median over a range
356         // of blocks to try to filter out inaccurate block times.
357         map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashBlock);
358         if (mi != mapBlockIndex.end())
359         {
360             CBlockIndex* pindex = (*mi).second;
361             if (pindex)
362                 return pindex->GetMedianTime();
363         }
364     }
365     return nTimeReceived;
366 }
367
368 int CWalletTx::GetRequestCount() const
369 {
370     // Returns -1 if it wasn't being tracked
371     int nRequests = -1;
372     CRITICAL_BLOCK(pwallet->cs_mapRequestCount)
373     {
374         if (IsCoinBase())
375         {
376             // Generated block
377             if (hashBlock != 0)
378             {
379                 map<uint256, int>::const_iterator mi = pwallet->mapRequestCount.find(hashBlock);
380                 if (mi != pwallet->mapRequestCount.end())
381                     nRequests = (*mi).second;
382             }
383         }
384         else
385         {
386             // Did anyone request this transaction?
387             map<uint256, int>::const_iterator mi = pwallet->mapRequestCount.find(GetHash());
388             if (mi != pwallet->mapRequestCount.end())
389             {
390                 nRequests = (*mi).second;
391
392                 // How about the block it's in?
393                 if (nRequests == 0 && hashBlock != 0)
394                 {
395                     map<uint256, int>::const_iterator mi = pwallet->mapRequestCount.find(hashBlock);
396                     if (mi != pwallet->mapRequestCount.end())
397                         nRequests = (*mi).second;
398                     else
399                         nRequests = 1; // If it's in someone else's block it must have got out
400                 }
401             }
402         }
403     }
404     return nRequests;
405 }
406
407 void CWalletTx::GetAmounts(int64& nGeneratedImmature, int64& nGeneratedMature, list<pair<string, int64> >& listReceived,
408                            list<pair<string, int64> >& listSent, int64& nFee, string& strSentAccount) const
409 {
410     nGeneratedImmature = nGeneratedMature = nFee = 0;
411     listReceived.clear();
412     listSent.clear();
413     strSentAccount = strFromAccount;
414
415     if (IsCoinBase())
416     {
417         if (GetBlocksToMaturity() > 0)
418             nGeneratedImmature = pwallet->GetCredit(*this);
419         else
420             nGeneratedMature = GetCredit();
421         return;
422     }
423
424     // Compute fee:
425     int64 nDebit = GetDebit();
426     if (nDebit > 0) // debit>0 means we signed/sent this transaction
427     {
428         int64 nValueOut = GetValueOut();
429         nFee = nDebit - nValueOut;
430     }
431
432     // Sent/received.  Standard client will never generate a send-to-multiple-recipients,
433     // but non-standard clients might (so return a list of address/amount pairs)
434     BOOST_FOREACH(const CTxOut& txout, vout)
435     {
436         string address;
437         uint160 hash160;
438         vector<unsigned char> vchPubKey;
439         if (ExtractHash160(txout.scriptPubKey, hash160))
440             address = Hash160ToAddress(hash160);
441         else if (ExtractPubKey(txout.scriptPubKey, NULL, vchPubKey))
442             address = PubKeyToAddress(vchPubKey);
443         else
444         {
445             printf("CWalletTx::GetAmounts: Unknown transaction type found, txid %s\n",
446                    this->GetHash().ToString().c_str());
447             address = " unknown ";
448         }
449
450         // Don't report 'change' txouts
451         if (nDebit > 0 && pwallet->IsChange(txout))
452             continue;
453
454         if (nDebit > 0)
455             listSent.push_back(make_pair(address, txout.nValue));
456
457         if (pwallet->IsMine(txout))
458             listReceived.push_back(make_pair(address, txout.nValue));
459     }
460
461 }
462
463 void CWalletTx::GetAccountAmounts(const string& strAccount, int64& nGenerated, int64& nReceived, 
464                                   int64& nSent, int64& nFee) const
465 {
466     nGenerated = nReceived = nSent = nFee = 0;
467
468     int64 allGeneratedImmature, allGeneratedMature, allFee;
469     allGeneratedImmature = allGeneratedMature = allFee = 0;
470     string strSentAccount;
471     list<pair<string, int64> > listReceived;
472     list<pair<string, int64> > listSent;
473     GetAmounts(allGeneratedImmature, allGeneratedMature, listReceived, listSent, allFee, strSentAccount);
474
475     if (strAccount == "")
476         nGenerated = allGeneratedMature;
477     if (strAccount == strSentAccount)
478     {
479         BOOST_FOREACH(const PAIRTYPE(string,int64)& s, listSent)
480             nSent += s.second;
481         nFee = allFee;
482     }
483     CRITICAL_BLOCK(pwallet->cs_mapAddressBook)
484     {
485         BOOST_FOREACH(const PAIRTYPE(string,int64)& r, listReceived)
486         {
487             if (pwallet->mapAddressBook.count(r.first))
488             {
489                 map<string, string>::const_iterator mi = pwallet->mapAddressBook.find(r.first);
490                 if (mi != pwallet->mapAddressBook.end() && (*mi).second == strAccount)
491                     nReceived += r.second;
492             }
493             else if (strAccount.empty())
494             {
495                 nReceived += r.second;
496             }
497         }
498     }
499 }
500
501 void CWalletTx::AddSupportingTransactions(CTxDB& txdb)
502 {
503     vtxPrev.clear();
504
505     const int COPY_DEPTH = 3;
506     if (SetMerkleBranch() < COPY_DEPTH)
507     {
508         vector<uint256> vWorkQueue;
509         BOOST_FOREACH(const CTxIn& txin, vin)
510             vWorkQueue.push_back(txin.prevout.hash);
511
512         // This critsect is OK because txdb is already open
513         CRITICAL_BLOCK(pwallet->cs_mapWallet)
514         {
515             map<uint256, const CMerkleTx*> mapWalletPrev;
516             set<uint256> setAlreadyDone;
517             for (int i = 0; i < vWorkQueue.size(); i++)
518             {
519                 uint256 hash = vWorkQueue[i];
520                 if (setAlreadyDone.count(hash))
521                     continue;
522                 setAlreadyDone.insert(hash);
523
524                 CMerkleTx tx;
525                 map<uint256, CWalletTx>::const_iterator mi = pwallet->mapWallet.find(hash);
526                 if (mi != pwallet->mapWallet.end())
527                 {
528                     tx = (*mi).second;
529                     BOOST_FOREACH(const CMerkleTx& txWalletPrev, (*mi).second.vtxPrev)
530                         mapWalletPrev[txWalletPrev.GetHash()] = &txWalletPrev;
531                 }
532                 else if (mapWalletPrev.count(hash))
533                 {
534                     tx = *mapWalletPrev[hash];
535                 }
536                 else if (!fClient && txdb.ReadDiskTx(hash, tx))
537                 {
538                     ;
539                 }
540                 else
541                 {
542                     printf("ERROR: AddSupportingTransactions() : unsupported transaction\n");
543                     continue;
544                 }
545
546                 int nDepth = tx.SetMerkleBranch();
547                 vtxPrev.push_back(tx);
548
549                 if (nDepth < COPY_DEPTH)
550                     BOOST_FOREACH(const CTxIn& txin, tx.vin)
551                         vWorkQueue.push_back(txin.prevout.hash);
552             }
553         }
554     }
555
556     reverse(vtxPrev.begin(), vtxPrev.end());
557 }
558
559 bool CWalletTx::WriteToDisk()
560 {
561     return CWalletDB(pwallet->strWalletFile).WriteTx(GetHash(), *this);
562 }
563
564 int CWallet::ScanForWalletTransactions(CBlockIndex* pindexStart, bool fUpdate)
565 {
566     int ret = 0;
567
568     CBlockIndex* pindex = pindexStart;
569     CRITICAL_BLOCK(cs_mapWallet)
570     {
571         while (pindex)
572         {
573             CBlock block;
574             block.ReadFromDisk(pindex, true);
575             BOOST_FOREACH(CTransaction& tx, block.vtx)
576             {
577                 if (AddToWalletIfInvolvingMe(tx, &block, fUpdate))
578                     ret++;
579             }
580             pindex = pindex->pnext;
581         }
582     }
583     return ret;
584 }
585
586 void CWallet::ReacceptWalletTransactions()
587 {
588     CTxDB txdb("r");
589     bool fRepeat = true;
590     while (fRepeat) CRITICAL_BLOCK(cs_mapWallet)
591     {
592         fRepeat = false;
593         vector<CDiskTxPos> vMissingTx;
594         BOOST_FOREACH(PAIRTYPE(const uint256, CWalletTx)& item, mapWallet)
595         {
596             CWalletTx& wtx = item.second;
597             if (wtx.IsCoinBase() && wtx.IsSpent(0))
598                 continue;
599
600             CTxIndex txindex;
601             bool fUpdated = false;
602             if (txdb.ReadTxIndex(wtx.GetHash(), txindex))
603             {
604                 // Update fSpent if a tx got spent somewhere else by a copy of wallet.dat
605                 if (txindex.vSpent.size() != wtx.vout.size())
606                 {
607                     printf("ERROR: ReacceptWalletTransactions() : txindex.vSpent.size() %d != wtx.vout.size() %d\n", txindex.vSpent.size(), wtx.vout.size());
608                     continue;
609                 }
610                 for (int i = 0; i < txindex.vSpent.size(); i++)
611                 {
612                     if (wtx.IsSpent(i))
613                         continue;
614                     if (!txindex.vSpent[i].IsNull() && IsMine(wtx.vout[i]))
615                     {
616                         wtx.MarkSpent(i);
617                         fUpdated = true;
618                         vMissingTx.push_back(txindex.vSpent[i]);
619                     }
620                 }
621                 if (fUpdated)
622                 {
623                     printf("ReacceptWalletTransactions found spent coin %sbc %s\n", FormatMoney(wtx.GetCredit()).c_str(), wtx.GetHash().ToString().c_str());
624                     wtx.MarkDirty();
625                     wtx.WriteToDisk();
626                 }
627             }
628             else
629             {
630                 // Reaccept any txes of ours that aren't already in a block
631                 if (!wtx.IsCoinBase())
632                     wtx.AcceptWalletTransaction(txdb, false);
633             }
634         }
635         if (!vMissingTx.empty())
636         {
637             // TODO: optimize this to scan just part of the block chain?
638             if (ScanForWalletTransactions(pindexGenesisBlock))
639                 fRepeat = true;  // Found missing transactions: re-do Reaccept.
640         }
641     }
642 }
643
644 void CWalletTx::RelayWalletTransaction(CTxDB& txdb)
645 {
646     BOOST_FOREACH(const CMerkleTx& tx, vtxPrev)
647     {
648         if (!tx.IsCoinBase())
649         {
650             uint256 hash = tx.GetHash();
651             if (!txdb.ContainsTx(hash))
652                 RelayMessage(CInv(MSG_TX, hash), (CTransaction)tx);
653         }
654     }
655     if (!IsCoinBase())
656     {
657         uint256 hash = GetHash();
658         if (!txdb.ContainsTx(hash))
659         {
660             printf("Relaying wtx %s\n", hash.ToString().substr(0,10).c_str());
661             RelayMessage(CInv(MSG_TX, hash), (CTransaction)*this);
662         }
663     }
664 }
665
666 void CWalletTx::RelayWalletTransaction()
667 {
668    CTxDB txdb("r");
669    RelayWalletTransaction(txdb);
670 }
671
672 void CWallet::ResendWalletTransactions()
673 {
674     // Do this infrequently and randomly to avoid giving away
675     // that these are our transactions.
676     static int64 nNextTime;
677     if (GetTime() < nNextTime)
678         return;
679     bool fFirst = (nNextTime == 0);
680     nNextTime = GetTime() + GetRand(30 * 60);
681     if (fFirst)
682         return;
683
684     // Only do it if there's been a new block since last time
685     static int64 nLastTime;
686     if (nTimeBestReceived < nLastTime)
687         return;
688     nLastTime = GetTime();
689
690     // Rebroadcast any of our txes that aren't in a block yet
691     printf("ResendWalletTransactions()\n");
692     CTxDB txdb("r");
693     CRITICAL_BLOCK(cs_mapWallet)
694     {
695         // Sort them in chronological order
696         multimap<unsigned int, CWalletTx*> mapSorted;
697         BOOST_FOREACH(PAIRTYPE(const uint256, CWalletTx)& item, mapWallet)
698         {
699             CWalletTx& wtx = item.second;
700             // Don't rebroadcast until it's had plenty of time that
701             // it should have gotten in already by now.
702             if (nTimeBestReceived - (int64)wtx.nTimeReceived > 5 * 60)
703                 mapSorted.insert(make_pair(wtx.nTimeReceived, &wtx));
704         }
705         BOOST_FOREACH(PAIRTYPE(const unsigned int, CWalletTx*)& item, mapSorted)
706         {
707             CWalletTx& wtx = *item.second;
708             wtx.RelayWalletTransaction(txdb);
709         }
710     }
711 }
712
713
714
715
716
717
718 //////////////////////////////////////////////////////////////////////////////
719 //
720 // Actions
721 //
722
723
724 int64 CWallet::GetBalance() const
725 {
726     int64 nTotal = 0;
727     CRITICAL_BLOCK(cs_mapWallet)
728     {
729         for (map<uint256, CWalletTx>::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
730         {
731             const CWalletTx* pcoin = &(*it).second;
732             if (!pcoin->IsFinal() || !pcoin->IsConfirmed())
733                 continue;
734             nTotal += pcoin->GetAvailableCredit();
735         }
736     }
737
738     return nTotal;
739 }
740
741
742 bool CWallet::SelectCoinsMinConf(int64 nTargetValue, int nConfMine, int nConfTheirs, set<pair<const CWalletTx*,unsigned int> >& setCoinsRet, int64& nValueRet) const
743 {
744     setCoinsRet.clear();
745     nValueRet = 0;
746
747     // List of values less than target
748     pair<int64, pair<const CWalletTx*,unsigned int> > coinLowestLarger;
749     coinLowestLarger.first = INT64_MAX;
750     coinLowestLarger.second.first = NULL;
751     vector<pair<int64, pair<const CWalletTx*,unsigned int> > > vValue;
752     int64 nTotalLower = 0;
753
754     CRITICAL_BLOCK(cs_mapWallet)
755     {
756        vector<const CWalletTx*> vCoins;
757        vCoins.reserve(mapWallet.size());
758        for (map<uint256, CWalletTx>::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
759            vCoins.push_back(&(*it).second);
760        random_shuffle(vCoins.begin(), vCoins.end(), GetRandInt);
761
762        BOOST_FOREACH(const CWalletTx* pcoin, vCoins)
763        {
764             if (!pcoin->IsFinal() || !pcoin->IsConfirmed())
765                 continue;
766
767             if (pcoin->IsCoinBase() && pcoin->GetBlocksToMaturity() > 0)
768                 continue;
769
770             int nDepth = pcoin->GetDepthInMainChain();
771             if (nDepth < (pcoin->IsFromMe() ? nConfMine : nConfTheirs))
772                 continue;
773
774             for (int i = 0; i < pcoin->vout.size(); i++)
775             {
776                 if (pcoin->IsSpent(i) || !IsMine(pcoin->vout[i]))
777                     continue;
778
779                 int64 n = pcoin->vout[i].nValue;
780
781                 if (n <= 0)
782                     continue;
783
784                 pair<int64,pair<const CWalletTx*,unsigned int> > coin = make_pair(n,make_pair(pcoin,i));
785
786                 if (n == nTargetValue)
787                 {
788                     setCoinsRet.insert(coin.second);
789                     nValueRet += coin.first;
790                     return true;
791                 }
792                 else if (n < nTargetValue + CENT)
793                 {
794                     vValue.push_back(coin);
795                     nTotalLower += n;
796                 }
797                 else if (n < coinLowestLarger.first)
798                 {
799                     coinLowestLarger = coin;
800                 }
801             }
802         }
803     }
804
805     if (nTotalLower == nTargetValue || nTotalLower == nTargetValue + CENT)
806     {
807         for (int i = 0; i < vValue.size(); ++i)
808         {
809             setCoinsRet.insert(vValue[i].second);
810             nValueRet += vValue[i].first;
811         }
812         return true;
813     }
814
815     if (nTotalLower < nTargetValue + (coinLowestLarger.second.first ? CENT : 0))
816     {
817         if (coinLowestLarger.second.first == NULL)
818             return false;
819         setCoinsRet.insert(coinLowestLarger.second);
820         nValueRet += coinLowestLarger.first;
821         return true;
822     }
823
824     if (nTotalLower >= nTargetValue + CENT)
825         nTargetValue += CENT;
826
827     // Solve subset sum by stochastic approximation
828     sort(vValue.rbegin(), vValue.rend());
829     vector<char> vfIncluded;
830     vector<char> vfBest(vValue.size(), true);
831     int64 nBest = nTotalLower;
832
833     for (int nRep = 0; nRep < 1000 && nBest != nTargetValue; nRep++)
834     {
835         vfIncluded.assign(vValue.size(), false);
836         int64 nTotal = 0;
837         bool fReachedTarget = false;
838         for (int nPass = 0; nPass < 2 && !fReachedTarget; nPass++)
839         {
840             for (int i = 0; i < vValue.size(); i++)
841             {
842                 if (nPass == 0 ? rand() % 2 : !vfIncluded[i])
843                 {
844                     nTotal += vValue[i].first;
845                     vfIncluded[i] = true;
846                     if (nTotal >= nTargetValue)
847                     {
848                         fReachedTarget = true;
849                         if (nTotal < nBest)
850                         {
851                             nBest = nTotal;
852                             vfBest = vfIncluded;
853                         }
854                         nTotal -= vValue[i].first;
855                         vfIncluded[i] = false;
856                     }
857                 }
858             }
859         }
860     }
861
862     // If the next larger is still closer, return it
863     if (coinLowestLarger.second.first && coinLowestLarger.first - nTargetValue <= nBest - nTargetValue)
864     {
865         setCoinsRet.insert(coinLowestLarger.second);
866         nValueRet += coinLowestLarger.first;
867     }
868     else {
869         for (int i = 0; i < vValue.size(); i++)
870             if (vfBest[i])
871             {
872                 setCoinsRet.insert(vValue[i].second);
873                 nValueRet += vValue[i].first;
874             }
875
876         //// debug print
877         printf("SelectCoins() best subset: ");
878         for (int i = 0; i < vValue.size(); i++)
879             if (vfBest[i])
880                 printf("%s ", FormatMoney(vValue[i].first).c_str());
881         printf("total %s\n", FormatMoney(nBest).c_str());
882     }
883
884     return true;
885 }
886
887 bool CWallet::SelectCoins(int64 nTargetValue, set<pair<const CWalletTx*,unsigned int> >& setCoinsRet, int64& nValueRet) const
888 {
889     return (SelectCoinsMinConf(nTargetValue, 1, 6, setCoinsRet, nValueRet) ||
890             SelectCoinsMinConf(nTargetValue, 1, 1, setCoinsRet, nValueRet) ||
891             SelectCoinsMinConf(nTargetValue, 0, 1, setCoinsRet, nValueRet));
892 }
893
894
895
896
897 bool CWallet::CreateTransaction(const vector<pair<CScript, int64> >& vecSend, CWalletTx& wtxNew, CReserveKey& reservekey, int64& nFeeRet)
898 {
899     int64 nValue = 0;
900     BOOST_FOREACH (const PAIRTYPE(CScript, int64)& s, vecSend)
901     {
902         if (nValue < 0)
903             return false;
904         nValue += s.second;
905     }
906     if (vecSend.empty() || nValue < 0)
907         return false;
908
909     wtxNew.pwallet = this;
910
911     CRITICAL_BLOCK(cs_main)
912     {
913         // txdb must be opened before the mapWallet lock
914         CTxDB txdb("r");
915         CRITICAL_BLOCK(cs_mapWallet)
916         {
917             nFeeRet = nTransactionFee;
918             loop
919             {
920                 wtxNew.vin.clear();
921                 wtxNew.vout.clear();
922                 wtxNew.fFromMe = true;
923
924                 int64 nTotalValue = nValue + nFeeRet;
925                 double dPriority = 0;
926                 // vouts to the payees
927                 BOOST_FOREACH (const PAIRTYPE(CScript, int64)& s, vecSend)
928                     wtxNew.vout.push_back(CTxOut(s.second, s.first));
929
930                 // Choose coins to use
931                 set<pair<const CWalletTx*,unsigned int> > setCoins;
932                 int64 nValueIn = 0;
933                 if (!SelectCoins(nTotalValue, setCoins, nValueIn))
934                     return false;
935                 BOOST_FOREACH(PAIRTYPE(const CWalletTx*, unsigned int) pcoin, setCoins)
936                 {
937                     int64 nCredit = pcoin.first->vout[pcoin.second].nValue;
938                     dPriority += (double)nCredit * pcoin.first->GetDepthInMainChain();
939                 }
940
941                 // Fill a vout back to self with any change
942                 int64 nChange = nValueIn - nTotalValue;
943                 if (nChange >= CENT)
944                 {
945                     // Note: We use a new key here to keep it from being obvious which side is the change.
946                     //  The drawback is that by not reusing a previous key, the change may be lost if a
947                     //  backup is restored, if the backup doesn't have the new private key for the change.
948                     //  If we reused the old key, it would be possible to add code to look for and
949                     //  rediscover unknown transactions that were written with keys of ours to recover
950                     //  post-backup change.
951
952                     // Reserve a new key pair from key pool
953                     vector<unsigned char> vchPubKey = reservekey.GetReservedKey();
954                     // assert(mapKeys.count(vchPubKey));
955
956                     // Fill a vout to ourself, using same address type as the payment
957                     CScript scriptChange;
958                     if (vecSend[0].first.GetBitcoinAddressHash160() != 0)
959                         scriptChange.SetBitcoinAddress(vchPubKey);
960                     else
961                         scriptChange << vchPubKey << OP_CHECKSIG;
962
963                     // Insert change txn at random position:
964                     vector<CTxOut>::iterator position = wtxNew.vout.begin()+GetRandInt(wtxNew.vout.size());
965                     wtxNew.vout.insert(position, CTxOut(nChange, scriptChange));
966                 }
967                 else
968                     reservekey.ReturnKey();
969
970                 // Fill vin
971                 BOOST_FOREACH(const PAIRTYPE(const CWalletTx*,unsigned int)& coin, setCoins)
972                     wtxNew.vin.push_back(CTxIn(coin.first->GetHash(),coin.second));
973
974                 // Sign
975                 int nIn = 0;
976                 BOOST_FOREACH(const PAIRTYPE(const CWalletTx*,unsigned int)& coin, setCoins)
977                     if (!SignSignature(*this, *coin.first, wtxNew, nIn++))
978                         return false;
979
980                 // Limit size
981                 unsigned int nBytes = ::GetSerializeSize(*(CTransaction*)&wtxNew, SER_NETWORK);
982                 if (nBytes >= MAX_BLOCK_SIZE_GEN/5)
983                     return false;
984                 dPriority /= nBytes;
985
986                 // Check that enough fee is included
987                 int64 nPayFee = nTransactionFee * (1 + (int64)nBytes / 1000);
988                 bool fAllowFree = CTransaction::AllowFree(dPriority);
989                 int64 nMinFee = wtxNew.GetMinFee(1, fAllowFree);
990                 if (nFeeRet < max(nPayFee, nMinFee))
991                 {
992                     nFeeRet = max(nPayFee, nMinFee);
993                     continue;
994                 }
995
996                 // Fill vtxPrev by copying from previous transactions vtxPrev
997                 wtxNew.AddSupportingTransactions(txdb);
998                 wtxNew.fTimeReceivedIsTxTime = true;
999
1000                 break;
1001             }
1002         }
1003     }
1004     return true;
1005 }
1006
1007 bool CWallet::CreateTransaction(CScript scriptPubKey, int64 nValue, CWalletTx& wtxNew, CReserveKey& reservekey, int64& nFeeRet)
1008 {
1009     vector< pair<CScript, int64> > vecSend;
1010     vecSend.push_back(make_pair(scriptPubKey, nValue));
1011     return CreateTransaction(vecSend, wtxNew, reservekey, nFeeRet);
1012 }
1013
1014 // Call after CreateTransaction unless you want to abort
1015 bool CWallet::CommitTransaction(CWalletTx& wtxNew, CReserveKey& reservekey)
1016 {
1017     CRITICAL_BLOCK(cs_main)
1018     {
1019         printf("CommitTransaction:\n%s", wtxNew.ToString().c_str());
1020         CRITICAL_BLOCK(cs_mapWallet)
1021         {
1022             // This is only to keep the database open to defeat the auto-flush for the
1023             // duration of this scope.  This is the only place where this optimization
1024             // maybe makes sense; please don't do it anywhere else.
1025             CWalletDB* pwalletdb = fFileBacked ? new CWalletDB(strWalletFile,"r") : NULL;
1026
1027             // Take key pair from key pool so it won't be used again
1028             reservekey.KeepKey();
1029
1030             // Add tx to wallet, because if it has change it's also ours,
1031             // otherwise just for transaction history.
1032             AddToWallet(wtxNew);
1033
1034             // Mark old coins as spent
1035             set<CWalletTx*> setCoins;
1036             BOOST_FOREACH(const CTxIn& txin, wtxNew.vin)
1037             {
1038                 CWalletTx &coin = mapWallet[txin.prevout.hash];
1039                 coin.pwallet = this;
1040                 coin.MarkSpent(txin.prevout.n);
1041                 coin.WriteToDisk();
1042                 vWalletUpdated.push_back(coin.GetHash());
1043             }
1044
1045             if (fFileBacked)
1046                 delete pwalletdb;
1047         }
1048
1049         // Track how many getdata requests our transaction gets
1050         CRITICAL_BLOCK(cs_mapRequestCount)
1051             mapRequestCount[wtxNew.GetHash()] = 0;
1052
1053         // Broadcast
1054         if (!wtxNew.AcceptToMemoryPool())
1055         {
1056             // This must not fail. The transaction has already been signed and recorded.
1057             printf("CommitTransaction() : Error: Transaction not valid");
1058             return false;
1059         }
1060         wtxNew.RelayWalletTransaction();
1061     }
1062     MainFrameRepaint();
1063     return true;
1064 }
1065
1066
1067
1068
1069 // requires cs_main lock
1070 string CWallet::SendMoney(CScript scriptPubKey, int64 nValue, CWalletTx& wtxNew, bool fAskFee)
1071 {
1072     CReserveKey reservekey(this);
1073     int64 nFeeRequired;
1074     CRITICAL_BLOCK(cs_vMasterKey)
1075     {
1076         if (IsLocked())
1077         {
1078             string strError = _("Error: Wallet locked, unable to create transaction  ");
1079             printf("SendMoney() : %s", strError.c_str());
1080             return strError;
1081         }
1082         if (!CreateTransaction(scriptPubKey, nValue, wtxNew, reservekey, nFeeRequired))
1083         {
1084             string strError;
1085             if (nValue + nFeeRequired > GetBalance())
1086                 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());
1087             else
1088                 strError = _("Error: Transaction creation failed  ");
1089             printf("SendMoney() : %s", strError.c_str());
1090             return strError;
1091         }
1092     }
1093
1094     if (fAskFee && !ThreadSafeAskFee(nFeeRequired, _("Sending..."), NULL))
1095         return "ABORTED";
1096
1097     if (!CommitTransaction(wtxNew, reservekey))
1098         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.");
1099
1100     MainFrameRepaint();
1101     return "";
1102 }
1103
1104
1105
1106 // requires cs_main lock
1107 string CWallet::SendMoneyToBitcoinAddress(string strAddress, int64 nValue, CWalletTx& wtxNew, bool fAskFee)
1108 {
1109     // Check amount
1110     if (nValue <= 0)
1111         return _("Invalid amount");
1112     if (nValue + nTransactionFee > GetBalance())
1113         return _("Insufficient funds");
1114
1115     // Parse bitcoin address
1116     CScript scriptPubKey;
1117     if (!scriptPubKey.SetBitcoinAddress(strAddress))
1118         return _("Invalid bitcoin address");
1119
1120     return SendMoney(scriptPubKey, nValue, wtxNew, fAskFee);
1121 }
1122
1123
1124
1125
1126 int CWallet::LoadWallet(bool& fFirstRunRet)
1127 {
1128     if (!fFileBacked)
1129         return false;
1130     fFirstRunRet = false;
1131     int nLoadWalletRet = CWalletDB(strWalletFile,"cr+").LoadWallet(this);
1132     if (nLoadWalletRet != DB_LOAD_OK)
1133         return nLoadWalletRet;
1134     fFirstRunRet = vchDefaultKey.empty();
1135
1136     if (!HaveKey(vchDefaultKey))
1137     {
1138         // Create new keyUser and set as default key
1139         RandAddSeedPerfmon();
1140
1141         SetDefaultKey(GetOrReuseKeyFromPool());
1142         if (!SetAddressBookName(PubKeyToAddress(vchDefaultKey), ""))
1143             return DB_LOAD_FAIL;
1144     }
1145
1146     CreateThread(ThreadFlushWalletDB, &strWalletFile);
1147     return DB_LOAD_OK;
1148 }
1149
1150
1151 bool CWallet::SetAddressBookName(const string& strAddress, const string& strName)
1152 {
1153     mapAddressBook[strAddress] = strName;
1154     if (!fFileBacked)
1155         return false;
1156     return CWalletDB(strWalletFile).WriteName(strAddress, strName);
1157 }
1158
1159 bool CWallet::DelAddressBookName(const string& strAddress)
1160 {
1161     mapAddressBook.erase(strAddress);
1162     if (!fFileBacked)
1163         return false;
1164     return CWalletDB(strWalletFile).EraseName(strAddress);
1165 }
1166
1167
1168 void CWallet::PrintWallet(const CBlock& block)
1169 {
1170     CRITICAL_BLOCK(cs_mapWallet)
1171     {
1172         if (mapWallet.count(block.vtx[0].GetHash()))
1173         {
1174             CWalletTx& wtx = mapWallet[block.vtx[0].GetHash()];
1175             printf("    mine:  %d  %d  %d", wtx.GetDepthInMainChain(), wtx.GetBlocksToMaturity(), wtx.GetCredit());
1176         }
1177     }
1178     printf("\n");
1179 }
1180
1181 bool CWallet::GetTransaction(const uint256 &hashTx, CWalletTx& wtx)
1182 {
1183     CRITICAL_BLOCK(cs_mapWallet)
1184     {
1185         map<uint256, CWalletTx>::iterator mi = mapWallet.find(hashTx);
1186         if (mi != mapWallet.end())
1187         {
1188             wtx = (*mi).second;
1189             return true;
1190         }
1191     }
1192     return false;
1193 }
1194
1195 bool CWallet::SetDefaultKey(const std::vector<unsigned char> &vchPubKey)
1196 {
1197     if (fFileBacked)
1198     {
1199         if (!CWalletDB(strWalletFile).WriteDefaultKey(vchPubKey))
1200             return false;
1201     }
1202     vchDefaultKey = vchPubKey;
1203     return true;
1204 }
1205
1206 bool GetWalletFile(CWallet* pwallet, string &strWalletFileOut)
1207 {
1208     if (!pwallet->fFileBacked)
1209         return false;
1210     strWalletFileOut = pwallet->strWalletFile;
1211     return true;
1212 }
1213
1214 bool CWallet::TopUpKeyPool()
1215 {
1216     CRITICAL_BLOCK(cs_main)
1217     CRITICAL_BLOCK(cs_mapWallet)
1218     CRITICAL_BLOCK(cs_setKeyPool)
1219     CRITICAL_BLOCK(cs_vMasterKey)
1220     {
1221         if (IsLocked())
1222             return false;
1223
1224         CWalletDB walletdb(strWalletFile);
1225
1226         // Top up key pool
1227         int64 nTargetSize = max(GetArg("-keypool", 100), (int64)0);
1228         while (setKeyPool.size() < nTargetSize+1)
1229         {
1230             int64 nEnd = 1;
1231             if (!setKeyPool.empty())
1232                 nEnd = *(--setKeyPool.end()) + 1;
1233             if (!walletdb.WritePool(nEnd, CKeyPool(GenerateNewKey())))
1234                 throw runtime_error("TopUpKeyPool() : writing generated key failed");
1235             setKeyPool.insert(nEnd);
1236             printf("keypool added key %"PRI64d", size=%d\n", nEnd, setKeyPool.size());
1237         }
1238     }
1239     return true;
1240 }
1241
1242 void CWallet::ReserveKeyFromKeyPool(int64& nIndex, CKeyPool& keypool)
1243 {
1244     nIndex = -1;
1245     keypool.vchPubKey.clear();
1246     CRITICAL_BLOCK(cs_main)
1247     CRITICAL_BLOCK(cs_mapWallet)
1248     CRITICAL_BLOCK(cs_setKeyPool)
1249     {
1250         if (!IsLocked())
1251             TopUpKeyPool();
1252
1253         // Get the oldest key
1254         if(setKeyPool.empty())
1255             return;
1256
1257         CWalletDB walletdb(strWalletFile);
1258
1259         nIndex = *(setKeyPool.begin());
1260         setKeyPool.erase(setKeyPool.begin());
1261         if (!walletdb.ReadPool(nIndex, keypool))
1262             throw runtime_error("ReserveKeyFromKeyPool() : read failed");
1263         if (!HaveKey(keypool.vchPubKey))
1264             throw runtime_error("ReserveKeyFromKeyPool() : unknown key in key pool");
1265         assert(!keypool.vchPubKey.empty());
1266         printf("keypool reserve %"PRI64d"\n", nIndex);
1267     }
1268 }
1269
1270 void CWallet::KeepKey(int64 nIndex)
1271 {
1272     // Remove from key pool
1273     if (fFileBacked)
1274     {
1275         CWalletDB walletdb(strWalletFile);
1276         CRITICAL_BLOCK(cs_main)
1277         {
1278             walletdb.ErasePool(nIndex);
1279         }
1280     }
1281     printf("keypool keep %"PRI64d"\n", nIndex);
1282 }
1283
1284 void CWallet::ReturnKey(int64 nIndex)
1285 {
1286     // Return to key pool
1287     CRITICAL_BLOCK(cs_setKeyPool)
1288         setKeyPool.insert(nIndex);
1289     printf("keypool return %"PRI64d"\n", nIndex);
1290 }
1291
1292 vector<unsigned char> CWallet::GetOrReuseKeyFromPool()
1293 {
1294     int64 nIndex = 0;
1295     CKeyPool keypool;
1296     ReserveKeyFromKeyPool(nIndex, keypool);
1297     if(nIndex == -1)
1298         return vchDefaultKey;
1299     KeepKey(nIndex);
1300     return keypool.vchPubKey;
1301 }
1302
1303 int64 CWallet::GetOldestKeyPoolTime()
1304 {
1305     int64 nIndex = 0;
1306     CKeyPool keypool;
1307     ReserveKeyFromKeyPool(nIndex, keypool);
1308     if (nIndex == -1)
1309         return GetTime();
1310     ReturnKey(nIndex);
1311     return keypool.nTime;
1312 }
1313
1314 vector<unsigned char> CReserveKey::GetReservedKey()
1315 {
1316     if (nIndex == -1)
1317     {
1318         CKeyPool keypool;
1319         pwallet->ReserveKeyFromKeyPool(nIndex, keypool);
1320         vchPubKey = keypool.vchPubKey;
1321     }
1322     assert(!vchPubKey.empty());
1323     return vchPubKey;
1324 }
1325
1326 void CReserveKey::KeepKey()
1327 {
1328     if (nIndex != -1)
1329         pwallet->KeepKey(nIndex);
1330     nIndex = -1;
1331     vchPubKey.clear();
1332 }
1333
1334 void CReserveKey::ReturnKey()
1335 {
1336     if (nIndex != -1)
1337         pwallet->ReturnKey(nIndex);
1338     nIndex = -1;
1339     vchPubKey.clear();
1340 }
1341