Fix crashes when a wallet is locked and GetReservedKey() is called
[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             {
273                 SetDefaultKey(GetOrReuseKeyFromPool());
274                 SetAddressBookName(PubKeyToAddress(vchDefaultKey), "");
275             }
276         }
277
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
745 bool CWallet::SelectCoinsMinConf(int64 nTargetValue, int nConfMine, int nConfTheirs, set<pair<const CWalletTx*,unsigned int> >& setCoinsRet, int64& nValueRet) const
746 {
747     setCoinsRet.clear();
748     nValueRet = 0;
749
750     // List of values less than target
751     pair<int64, pair<const CWalletTx*,unsigned int> > coinLowestLarger;
752     coinLowestLarger.first = INT64_MAX;
753     coinLowestLarger.second.first = NULL;
754     vector<pair<int64, pair<const CWalletTx*,unsigned int> > > vValue;
755     int64 nTotalLower = 0;
756
757     CRITICAL_BLOCK(cs_mapWallet)
758     {
759        vector<const CWalletTx*> vCoins;
760        vCoins.reserve(mapWallet.size());
761        for (map<uint256, CWalletTx>::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
762            vCoins.push_back(&(*it).second);
763        random_shuffle(vCoins.begin(), vCoins.end(), GetRandInt);
764
765        BOOST_FOREACH(const CWalletTx* pcoin, vCoins)
766        {
767             if (!pcoin->IsFinal() || !pcoin->IsConfirmed())
768                 continue;
769
770             if (pcoin->IsCoinBase() && pcoin->GetBlocksToMaturity() > 0)
771                 continue;
772
773             int nDepth = pcoin->GetDepthInMainChain();
774             if (nDepth < (pcoin->IsFromMe() ? nConfMine : nConfTheirs))
775                 continue;
776
777             for (int i = 0; i < pcoin->vout.size(); i++)
778             {
779                 if (pcoin->IsSpent(i) || !IsMine(pcoin->vout[i]))
780                     continue;
781
782                 int64 n = pcoin->vout[i].nValue;
783
784                 if (n <= 0)
785                     continue;
786
787                 pair<int64,pair<const CWalletTx*,unsigned int> > coin = make_pair(n,make_pair(pcoin,i));
788
789                 if (n == nTargetValue)
790                 {
791                     setCoinsRet.insert(coin.second);
792                     nValueRet += coin.first;
793                     return true;
794                 }
795                 else if (n < nTargetValue + CENT)
796                 {
797                     vValue.push_back(coin);
798                     nTotalLower += n;
799                 }
800                 else if (n < coinLowestLarger.first)
801                 {
802                     coinLowestLarger = coin;
803                 }
804             }
805         }
806     }
807
808     if (nTotalLower == nTargetValue || nTotalLower == nTargetValue + CENT)
809     {
810         for (int i = 0; i < vValue.size(); ++i)
811         {
812             setCoinsRet.insert(vValue[i].second);
813             nValueRet += vValue[i].first;
814         }
815         return true;
816     }
817
818     if (nTotalLower < nTargetValue + (coinLowestLarger.second.first ? CENT : 0))
819     {
820         if (coinLowestLarger.second.first == NULL)
821             return false;
822         setCoinsRet.insert(coinLowestLarger.second);
823         nValueRet += coinLowestLarger.first;
824         return true;
825     }
826
827     if (nTotalLower >= nTargetValue + CENT)
828         nTargetValue += CENT;
829
830     // Solve subset sum by stochastic approximation
831     sort(vValue.rbegin(), vValue.rend());
832     vector<char> vfIncluded;
833     vector<char> vfBest(vValue.size(), true);
834     int64 nBest = nTotalLower;
835
836     for (int nRep = 0; nRep < 1000 && nBest != nTargetValue; nRep++)
837     {
838         vfIncluded.assign(vValue.size(), false);
839         int64 nTotal = 0;
840         bool fReachedTarget = false;
841         for (int nPass = 0; nPass < 2 && !fReachedTarget; nPass++)
842         {
843             for (int i = 0; i < vValue.size(); i++)
844             {
845                 if (nPass == 0 ? rand() % 2 : !vfIncluded[i])
846                 {
847                     nTotal += vValue[i].first;
848                     vfIncluded[i] = true;
849                     if (nTotal >= nTargetValue)
850                     {
851                         fReachedTarget = true;
852                         if (nTotal < nBest)
853                         {
854                             nBest = nTotal;
855                             vfBest = vfIncluded;
856                         }
857                         nTotal -= vValue[i].first;
858                         vfIncluded[i] = false;
859                     }
860                 }
861             }
862         }
863     }
864
865     // If the next larger is still closer, return it
866     if (coinLowestLarger.second.first && coinLowestLarger.first - nTargetValue <= nBest - nTargetValue)
867     {
868         setCoinsRet.insert(coinLowestLarger.second);
869         nValueRet += coinLowestLarger.first;
870     }
871     else {
872         for (int i = 0; i < vValue.size(); i++)
873             if (vfBest[i])
874             {
875                 setCoinsRet.insert(vValue[i].second);
876                 nValueRet += vValue[i].first;
877             }
878
879         //// debug print
880         printf("SelectCoins() best subset: ");
881         for (int i = 0; i < vValue.size(); i++)
882             if (vfBest[i])
883                 printf("%s ", FormatMoney(vValue[i].first).c_str());
884         printf("total %s\n", FormatMoney(nBest).c_str());
885     }
886
887     return true;
888 }
889
890 bool CWallet::SelectCoins(int64 nTargetValue, set<pair<const CWalletTx*,unsigned int> >& setCoinsRet, int64& nValueRet) const
891 {
892     return (SelectCoinsMinConf(nTargetValue, 1, 6, setCoinsRet, nValueRet) ||
893             SelectCoinsMinConf(nTargetValue, 1, 1, setCoinsRet, nValueRet) ||
894             SelectCoinsMinConf(nTargetValue, 0, 1, setCoinsRet, nValueRet));
895 }
896
897
898
899
900 bool CWallet::CreateTransaction(const vector<pair<CScript, int64> >& vecSend, CWalletTx& wtxNew, CReserveKey& reservekey, int64& nFeeRet)
901 {
902     int64 nValue = 0;
903     BOOST_FOREACH (const PAIRTYPE(CScript, int64)& s, vecSend)
904     {
905         if (nValue < 0)
906             return false;
907         nValue += s.second;
908     }
909     if (vecSend.empty() || nValue < 0)
910         return false;
911
912     wtxNew.pwallet = this;
913
914     CRITICAL_BLOCK(cs_main)
915     {
916         // txdb must be opened before the mapWallet lock
917         CTxDB txdb("r");
918         CRITICAL_BLOCK(cs_mapWallet)
919         {
920             nFeeRet = nTransactionFee;
921             loop
922             {
923                 wtxNew.vin.clear();
924                 wtxNew.vout.clear();
925                 wtxNew.fFromMe = true;
926
927                 int64 nTotalValue = nValue + nFeeRet;
928                 double dPriority = 0;
929                 // vouts to the payees
930                 BOOST_FOREACH (const PAIRTYPE(CScript, int64)& s, vecSend)
931                     wtxNew.vout.push_back(CTxOut(s.second, s.first));
932
933                 // Choose coins to use
934                 set<pair<const CWalletTx*,unsigned int> > setCoins;
935                 int64 nValueIn = 0;
936                 if (!SelectCoins(nTotalValue, setCoins, nValueIn))
937                     return false;
938                 BOOST_FOREACH(PAIRTYPE(const CWalletTx*, unsigned int) pcoin, setCoins)
939                 {
940                     int64 nCredit = pcoin.first->vout[pcoin.second].nValue;
941                     dPriority += (double)nCredit * pcoin.first->GetDepthInMainChain();
942                 }
943
944                 // Fill a vout back to self with any change
945                 int64 nChange = nValueIn - nTotalValue;
946                 if (nChange >= CENT)
947                 {
948                     // Note: We use a new key here to keep it from being obvious which side is the change.
949                     //  The drawback is that by not reusing a previous key, the change may be lost if a
950                     //  backup is restored, if the backup doesn't have the new private key for the change.
951                     //  If we reused the old key, it would be possible to add code to look for and
952                     //  rediscover unknown transactions that were written with keys of ours to recover
953                     //  post-backup change.
954
955                     // Reserve a new key pair from key pool
956                     vector<unsigned char> vchPubKey = reservekey.GetReservedKey();
957                     // assert(mapKeys.count(vchPubKey));
958
959                     // Fill a vout to ourself, using same address type as the payment
960                     CScript scriptChange;
961                     if (vecSend[0].first.GetBitcoinAddressHash160() != 0)
962                         scriptChange.SetBitcoinAddress(vchPubKey);
963                     else
964                         scriptChange << vchPubKey << OP_CHECKSIG;
965
966                     // Insert change txn at random position:
967                     vector<CTxOut>::iterator position = wtxNew.vout.begin()+GetRandInt(wtxNew.vout.size());
968                     wtxNew.vout.insert(position, CTxOut(nChange, scriptChange));
969                 }
970                 else
971                     reservekey.ReturnKey();
972
973                 // Fill vin
974                 BOOST_FOREACH(const PAIRTYPE(const CWalletTx*,unsigned int)& coin, setCoins)
975                     wtxNew.vin.push_back(CTxIn(coin.first->GetHash(),coin.second));
976
977                 // Sign
978                 int nIn = 0;
979                 BOOST_FOREACH(const PAIRTYPE(const CWalletTx*,unsigned int)& coin, setCoins)
980                     if (!SignSignature(*this, *coin.first, wtxNew, nIn++))
981                         return false;
982
983                 // Limit size
984                 unsigned int nBytes = ::GetSerializeSize(*(CTransaction*)&wtxNew, SER_NETWORK);
985                 if (nBytes >= MAX_BLOCK_SIZE_GEN/5)
986                     return false;
987                 dPriority /= nBytes;
988
989                 // Check that enough fee is included
990                 int64 nPayFee = nTransactionFee * (1 + (int64)nBytes / 1000);
991                 bool fAllowFree = CTransaction::AllowFree(dPriority);
992                 int64 nMinFee = wtxNew.GetMinFee(1, fAllowFree);
993                 if (nFeeRet < max(nPayFee, nMinFee))
994                 {
995                     nFeeRet = max(nPayFee, nMinFee);
996                     continue;
997                 }
998
999                 // Fill vtxPrev by copying from previous transactions vtxPrev
1000                 wtxNew.AddSupportingTransactions(txdb);
1001                 wtxNew.fTimeReceivedIsTxTime = true;
1002
1003                 break;
1004             }
1005         }
1006     }
1007     return true;
1008 }
1009
1010 bool CWallet::CreateTransaction(CScript scriptPubKey, int64 nValue, CWalletTx& wtxNew, CReserveKey& reservekey, int64& nFeeRet)
1011 {
1012     vector< pair<CScript, int64> > vecSend;
1013     vecSend.push_back(make_pair(scriptPubKey, nValue));
1014     return CreateTransaction(vecSend, wtxNew, reservekey, nFeeRet);
1015 }
1016
1017 // Call after CreateTransaction unless you want to abort
1018 bool CWallet::CommitTransaction(CWalletTx& wtxNew, CReserveKey& reservekey)
1019 {
1020     CRITICAL_BLOCK(cs_main)
1021     {
1022         printf("CommitTransaction:\n%s", wtxNew.ToString().c_str());
1023         CRITICAL_BLOCK(cs_mapWallet)
1024         {
1025             // This is only to keep the database open to defeat the auto-flush for the
1026             // duration of this scope.  This is the only place where this optimization
1027             // maybe makes sense; please don't do it anywhere else.
1028             CWalletDB* pwalletdb = fFileBacked ? new CWalletDB(strWalletFile,"r") : NULL;
1029
1030             // Take key pair from key pool so it won't be used again
1031             reservekey.KeepKey();
1032
1033             // Add tx to wallet, because if it has change it's also ours,
1034             // otherwise just for transaction history.
1035             AddToWallet(wtxNew);
1036
1037             // Mark old coins as spent
1038             set<CWalletTx*> setCoins;
1039             BOOST_FOREACH(const CTxIn& txin, wtxNew.vin)
1040             {
1041                 CWalletTx &coin = mapWallet[txin.prevout.hash];
1042                 coin.pwallet = this;
1043                 coin.MarkSpent(txin.prevout.n);
1044                 coin.WriteToDisk();
1045                 vWalletUpdated.push_back(coin.GetHash());
1046             }
1047
1048             if (fFileBacked)
1049                 delete pwalletdb;
1050         }
1051
1052         // Track how many getdata requests our transaction gets
1053         CRITICAL_BLOCK(cs_mapRequestCount)
1054             mapRequestCount[wtxNew.GetHash()] = 0;
1055
1056         // Broadcast
1057         if (!wtxNew.AcceptToMemoryPool())
1058         {
1059             // This must not fail. The transaction has already been signed and recorded.
1060             printf("CommitTransaction() : Error: Transaction not valid");
1061             return false;
1062         }
1063         wtxNew.RelayWalletTransaction();
1064     }
1065     MainFrameRepaint();
1066     return true;
1067 }
1068
1069
1070
1071
1072 // requires cs_main lock
1073 string CWallet::SendMoney(CScript scriptPubKey, int64 nValue, CWalletTx& wtxNew, bool fAskFee)
1074 {
1075     CReserveKey reservekey(this);
1076     int64 nFeeRequired;
1077     CRITICAL_BLOCK(cs_vMasterKey)
1078     {
1079         if (IsLocked())
1080         {
1081             string strError = _("Error: Wallet locked, unable to create transaction  ");
1082             printf("SendMoney() : %s", strError.c_str());
1083             return strError;
1084         }
1085         if (!CreateTransaction(scriptPubKey, nValue, wtxNew, reservekey, nFeeRequired))
1086         {
1087             string strError;
1088             if (nValue + nFeeRequired > GetBalance())
1089                 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());
1090             else
1091                 strError = _("Error: Transaction creation failed  ");
1092             printf("SendMoney() : %s", strError.c_str());
1093             return strError;
1094         }
1095     }
1096
1097     if (fAskFee && !ThreadSafeAskFee(nFeeRequired, _("Sending..."), NULL))
1098         return "ABORTED";
1099
1100     if (!CommitTransaction(wtxNew, reservekey))
1101         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.");
1102
1103     MainFrameRepaint();
1104     return "";
1105 }
1106
1107
1108
1109 // requires cs_main lock
1110 string CWallet::SendMoneyToBitcoinAddress(string strAddress, int64 nValue, CWalletTx& wtxNew, bool fAskFee)
1111 {
1112     // Check amount
1113     if (nValue <= 0)
1114         return _("Invalid amount");
1115     if (nValue + nTransactionFee > GetBalance())
1116         return _("Insufficient funds");
1117
1118     // Parse bitcoin address
1119     CScript scriptPubKey;
1120     if (!scriptPubKey.SetBitcoinAddress(strAddress))
1121         return _("Invalid bitcoin address");
1122
1123     return SendMoney(scriptPubKey, nValue, wtxNew, fAskFee);
1124 }
1125
1126
1127
1128
1129 int CWallet::LoadWallet(bool& fFirstRunRet)
1130 {
1131     if (!fFileBacked)
1132         return false;
1133     fFirstRunRet = false;
1134     int nLoadWalletRet = CWalletDB(strWalletFile,"cr+").LoadWallet(this);
1135     if (nLoadWalletRet != DB_LOAD_OK)
1136         return nLoadWalletRet;
1137     fFirstRunRet = vchDefaultKey.empty();
1138
1139     if (!HaveKey(vchDefaultKey))
1140     {
1141         // Create new keyUser and set as default key
1142         RandAddSeedPerfmon();
1143
1144         SetDefaultKey(GetOrReuseKeyFromPool());
1145         if (!SetAddressBookName(PubKeyToAddress(vchDefaultKey), ""))
1146             return DB_LOAD_FAIL;
1147     }
1148
1149     CreateThread(ThreadFlushWalletDB, &strWalletFile);
1150     return DB_LOAD_OK;
1151 }
1152
1153
1154 bool CWallet::SetAddressBookName(const string& strAddress, const string& strName)
1155 {
1156     mapAddressBook[strAddress] = strName;
1157     if (!fFileBacked)
1158         return false;
1159     return CWalletDB(strWalletFile).WriteName(strAddress, strName);
1160 }
1161
1162 bool CWallet::DelAddressBookName(const string& strAddress)
1163 {
1164     mapAddressBook.erase(strAddress);
1165     if (!fFileBacked)
1166         return false;
1167     return CWalletDB(strWalletFile).EraseName(strAddress);
1168 }
1169
1170
1171 void CWallet::PrintWallet(const CBlock& block)
1172 {
1173     CRITICAL_BLOCK(cs_mapWallet)
1174     {
1175         if (mapWallet.count(block.vtx[0].GetHash()))
1176         {
1177             CWalletTx& wtx = mapWallet[block.vtx[0].GetHash()];
1178             printf("    mine:  %d  %d  %d", wtx.GetDepthInMainChain(), wtx.GetBlocksToMaturity(), wtx.GetCredit());
1179         }
1180     }
1181     printf("\n");
1182 }
1183
1184 bool CWallet::GetTransaction(const uint256 &hashTx, CWalletTx& wtx)
1185 {
1186     CRITICAL_BLOCK(cs_mapWallet)
1187     {
1188         map<uint256, CWalletTx>::iterator mi = mapWallet.find(hashTx);
1189         if (mi != mapWallet.end())
1190         {
1191             wtx = (*mi).second;
1192             return true;
1193         }
1194     }
1195     return false;
1196 }
1197
1198 bool CWallet::SetDefaultKey(const std::vector<unsigned char> &vchPubKey)
1199 {
1200     if (fFileBacked)
1201     {
1202         if (!CWalletDB(strWalletFile).WriteDefaultKey(vchPubKey))
1203             return false;
1204     }
1205     vchDefaultKey = vchPubKey;
1206     return true;
1207 }
1208
1209 bool GetWalletFile(CWallet* pwallet, string &strWalletFileOut)
1210 {
1211     if (!pwallet->fFileBacked)
1212         return false;
1213     strWalletFileOut = pwallet->strWalletFile;
1214     return true;
1215 }
1216
1217 bool CWallet::TopUpKeyPool()
1218 {
1219     CRITICAL_BLOCK(cs_main)
1220     CRITICAL_BLOCK(cs_mapWallet)
1221     CRITICAL_BLOCK(cs_setKeyPool)
1222     CRITICAL_BLOCK(cs_vMasterKey)
1223     {
1224         if (IsLocked())
1225             return false;
1226
1227         CWalletDB walletdb(strWalletFile);
1228
1229         // Top up key pool
1230         int64 nTargetSize = max(GetArg("-keypool", 100), (int64)0);
1231         while (setKeyPool.size() < nTargetSize+1)
1232         {
1233             int64 nEnd = 1;
1234             if (!setKeyPool.empty())
1235                 nEnd = *(--setKeyPool.end()) + 1;
1236             if (!walletdb.WritePool(nEnd, CKeyPool(GenerateNewKey())))
1237                 throw runtime_error("TopUpKeyPool() : writing generated key failed");
1238             setKeyPool.insert(nEnd);
1239             printf("keypool added key %"PRI64d", size=%d\n", nEnd, setKeyPool.size());
1240         }
1241     }
1242     return true;
1243 }
1244
1245 void CWallet::ReserveKeyFromKeyPool(int64& nIndex, CKeyPool& keypool)
1246 {
1247     nIndex = -1;
1248     keypool.vchPubKey.clear();
1249     CRITICAL_BLOCK(cs_main)
1250     CRITICAL_BLOCK(cs_mapWallet)
1251     CRITICAL_BLOCK(cs_setKeyPool)
1252     {
1253         if (!IsLocked())
1254             TopUpKeyPool();
1255
1256         // Get the oldest key
1257         if(setKeyPool.empty())
1258             return;
1259
1260         CWalletDB walletdb(strWalletFile);
1261
1262         nIndex = *(setKeyPool.begin());
1263         setKeyPool.erase(setKeyPool.begin());
1264         if (!walletdb.ReadPool(nIndex, keypool))
1265             throw runtime_error("ReserveKeyFromKeyPool() : read failed");
1266         if (!HaveKey(keypool.vchPubKey))
1267             throw runtime_error("ReserveKeyFromKeyPool() : unknown key in key pool");
1268         assert(!keypool.vchPubKey.empty());
1269         printf("keypool reserve %"PRI64d"\n", nIndex);
1270     }
1271 }
1272
1273 void CWallet::KeepKey(int64 nIndex)
1274 {
1275     // Remove from key pool
1276     if (fFileBacked)
1277     {
1278         CWalletDB walletdb(strWalletFile);
1279         CRITICAL_BLOCK(cs_main)
1280         {
1281             walletdb.ErasePool(nIndex);
1282         }
1283     }
1284     printf("keypool keep %"PRI64d"\n", nIndex);
1285 }
1286
1287 void CWallet::ReturnKey(int64 nIndex)
1288 {
1289     // Return to key pool
1290     CRITICAL_BLOCK(cs_setKeyPool)
1291         setKeyPool.insert(nIndex);
1292     printf("keypool return %"PRI64d"\n", nIndex);
1293 }
1294
1295 vector<unsigned char> CWallet::GetOrReuseKeyFromPool()
1296 {
1297     int64 nIndex = 0;
1298     CKeyPool keypool;
1299     ReserveKeyFromKeyPool(nIndex, keypool);
1300     if(nIndex == -1)
1301         return vchDefaultKey;
1302     KeepKey(nIndex);
1303     return keypool.vchPubKey;
1304 }
1305
1306 int64 CWallet::GetOldestKeyPoolTime()
1307 {
1308     int64 nIndex = 0;
1309     CKeyPool keypool;
1310     ReserveKeyFromKeyPool(nIndex, keypool);
1311     if (nIndex == -1)
1312         return GetTime();
1313     ReturnKey(nIndex);
1314     return keypool.nTime;
1315 }
1316
1317 vector<unsigned char> CReserveKey::GetReservedKey()
1318 {
1319     if (nIndex == -1)
1320     {
1321         CKeyPool keypool;
1322         pwallet->ReserveKeyFromKeyPool(nIndex, keypool);
1323         if (nIndex != -1)
1324             vchPubKey = keypool.vchPubKey;
1325         else
1326             vchPubKey = vchDefaultKey;
1327     }
1328     assert(!vchPubKey.empty());
1329     return vchPubKey;
1330 }
1331
1332 void CReserveKey::KeepKey()
1333 {
1334     if (nIndex != -1)
1335         pwallet->KeepKey(nIndex);
1336     nIndex = -1;
1337     vchPubKey.clear();
1338 }
1339
1340 void CReserveKey::ReturnKey()
1341 {
1342     if (nIndex != -1)
1343         pwallet->ReturnKey(nIndex);
1344     nIndex = -1;
1345     vchPubKey.clear();
1346 }
1347