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