Fix for small change outputs
[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                 int64 nChange = nValueIn - nValue - nFeeRet;
945                 // if sub-cent change is required, the fee must be raised to at least MIN_TX_FEE
946                 // or until nChange becomes zero
947                 if (nFeeRet < MIN_TX_FEE && nChange > 0 && nChange < CENT)
948                 {
949                     int64 nMoveToFee = min(nChange, MIN_TX_FEE - nFeeRet);
950                     nChange -= nMoveToFee;
951                     nFeeRet += nMoveToFee;
952                 }
953
954                 if (nChange > 0)
955                 {
956                     // Note: We use a new key here to keep it from being obvious which side is the change.
957                     //  The drawback is that by not reusing a previous key, the change may be lost if a
958                     //  backup is restored, if the backup doesn't have the new private key for the change.
959                     //  If we reused the old key, it would be possible to add code to look for and
960                     //  rediscover unknown transactions that were written with keys of ours to recover
961                     //  post-backup change.
962
963                     // Reserve a new key pair from key pool
964                     vector<unsigned char> vchPubKey = reservekey.GetReservedKey();
965                     // assert(mapKeys.count(vchPubKey));
966
967                     // Fill a vout to ourself, using same address type as the payment
968                     CScript scriptChange;
969                     if (vecSend[0].first.GetBitcoinAddressHash160() != 0)
970                         scriptChange.SetBitcoinAddress(vchPubKey);
971                     else
972                         scriptChange << vchPubKey << OP_CHECKSIG;
973
974                     // Insert change txn at random position:
975                     vector<CTxOut>::iterator position = wtxNew.vout.begin()+GetRandInt(wtxNew.vout.size());
976                     wtxNew.vout.insert(position, CTxOut(nChange, scriptChange));
977                 }
978                 else
979                     reservekey.ReturnKey();
980
981                 // Fill vin
982                 BOOST_FOREACH(const PAIRTYPE(const CWalletTx*,unsigned int)& coin, setCoins)
983                     wtxNew.vin.push_back(CTxIn(coin.first->GetHash(),coin.second));
984
985                 // Sign
986                 int nIn = 0;
987                 BOOST_FOREACH(const PAIRTYPE(const CWalletTx*,unsigned int)& coin, setCoins)
988                     if (!SignSignature(*this, *coin.first, wtxNew, nIn++))
989                         return false;
990
991                 // Limit size
992                 unsigned int nBytes = ::GetSerializeSize(*(CTransaction*)&wtxNew, SER_NETWORK);
993                 if (nBytes >= MAX_BLOCK_SIZE_GEN/5)
994                     return false;
995                 dPriority /= nBytes;
996
997                 // Check that enough fee is included
998                 int64 nPayFee = nTransactionFee * (1 + (int64)nBytes / 1000);
999                 bool fAllowFree = CTransaction::AllowFree(dPriority);
1000                 int64 nMinFee = wtxNew.GetMinFee(1, fAllowFree);
1001                 if (nFeeRet < max(nPayFee, nMinFee))
1002                 {
1003                     nFeeRet = max(nPayFee, nMinFee);
1004                     continue;
1005                 }
1006
1007                 // Fill vtxPrev by copying from previous transactions vtxPrev
1008                 wtxNew.AddSupportingTransactions(txdb);
1009                 wtxNew.fTimeReceivedIsTxTime = true;
1010
1011                 break;
1012             }
1013         }
1014     }
1015     return true;
1016 }
1017
1018 bool CWallet::CreateTransaction(CScript scriptPubKey, int64 nValue, CWalletTx& wtxNew, CReserveKey& reservekey, int64& nFeeRet)
1019 {
1020     vector< pair<CScript, int64> > vecSend;
1021     vecSend.push_back(make_pair(scriptPubKey, nValue));
1022     return CreateTransaction(vecSend, wtxNew, reservekey, nFeeRet);
1023 }
1024
1025 // Call after CreateTransaction unless you want to abort
1026 bool CWallet::CommitTransaction(CWalletTx& wtxNew, CReserveKey& reservekey)
1027 {
1028     CRITICAL_BLOCK(cs_main)
1029     {
1030         printf("CommitTransaction:\n%s", wtxNew.ToString().c_str());
1031         CRITICAL_BLOCK(cs_mapWallet)
1032         {
1033             // This is only to keep the database open to defeat the auto-flush for the
1034             // duration of this scope.  This is the only place where this optimization
1035             // maybe makes sense; please don't do it anywhere else.
1036             CWalletDB* pwalletdb = fFileBacked ? new CWalletDB(strWalletFile,"r") : NULL;
1037
1038             // Take key pair from key pool so it won't be used again
1039             reservekey.KeepKey();
1040
1041             // Add tx to wallet, because if it has change it's also ours,
1042             // otherwise just for transaction history.
1043             AddToWallet(wtxNew);
1044
1045             // Mark old coins as spent
1046             set<CWalletTx*> setCoins;
1047             BOOST_FOREACH(const CTxIn& txin, wtxNew.vin)
1048             {
1049                 CWalletTx &coin = mapWallet[txin.prevout.hash];
1050                 coin.pwallet = this;
1051                 coin.MarkSpent(txin.prevout.n);
1052                 coin.WriteToDisk();
1053                 vWalletUpdated.push_back(coin.GetHash());
1054             }
1055
1056             if (fFileBacked)
1057                 delete pwalletdb;
1058         }
1059
1060         // Track how many getdata requests our transaction gets
1061         CRITICAL_BLOCK(cs_mapRequestCount)
1062             mapRequestCount[wtxNew.GetHash()] = 0;
1063
1064         // Broadcast
1065         if (!wtxNew.AcceptToMemoryPool())
1066         {
1067             // This must not fail. The transaction has already been signed and recorded.
1068             printf("CommitTransaction() : Error: Transaction not valid");
1069             return false;
1070         }
1071         wtxNew.RelayWalletTransaction();
1072     }
1073     MainFrameRepaint();
1074     return true;
1075 }
1076
1077
1078
1079
1080 // requires cs_main lock
1081 string CWallet::SendMoney(CScript scriptPubKey, int64 nValue, CWalletTx& wtxNew, bool fAskFee)
1082 {
1083     CReserveKey reservekey(this);
1084     int64 nFeeRequired;
1085     CRITICAL_BLOCK(cs_vMasterKey)
1086     {
1087         if (IsLocked())
1088         {
1089             string strError = _("Error: Wallet locked, unable to create transaction  ");
1090             printf("SendMoney() : %s", strError.c_str());
1091             return strError;
1092         }
1093         if (!CreateTransaction(scriptPubKey, nValue, wtxNew, reservekey, nFeeRequired))
1094         {
1095             string strError;
1096             if (nValue + nFeeRequired > GetBalance())
1097                 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());
1098             else
1099                 strError = _("Error: Transaction creation failed  ");
1100             printf("SendMoney() : %s", strError.c_str());
1101             return strError;
1102         }
1103     }
1104
1105     if (fAskFee && !ThreadSafeAskFee(nFeeRequired, _("Sending..."), NULL))
1106         return "ABORTED";
1107
1108     if (!CommitTransaction(wtxNew, reservekey))
1109         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.");
1110
1111     MainFrameRepaint();
1112     return "";
1113 }
1114
1115
1116
1117 // requires cs_main lock
1118 string CWallet::SendMoneyToBitcoinAddress(string strAddress, int64 nValue, CWalletTx& wtxNew, bool fAskFee)
1119 {
1120     // Check amount
1121     if (nValue <= 0)
1122         return _("Invalid amount");
1123     if (nValue + nTransactionFee > GetBalance())
1124         return _("Insufficient funds");
1125
1126     // Parse bitcoin address
1127     CScript scriptPubKey;
1128     if (!scriptPubKey.SetBitcoinAddress(strAddress))
1129         return _("Invalid bitcoin address");
1130
1131     return SendMoney(scriptPubKey, nValue, wtxNew, fAskFee);
1132 }
1133
1134
1135
1136
1137 int CWallet::LoadWallet(bool& fFirstRunRet)
1138 {
1139     if (!fFileBacked)
1140         return false;
1141     fFirstRunRet = false;
1142     int nLoadWalletRet = CWalletDB(strWalletFile,"cr+").LoadWallet(this);
1143     if (nLoadWalletRet != DB_LOAD_OK)
1144         return nLoadWalletRet;
1145     fFirstRunRet = vchDefaultKey.empty();
1146
1147     if (!HaveKey(vchDefaultKey))
1148     {
1149         // Create new keyUser and set as default key
1150         RandAddSeedPerfmon();
1151
1152         SetDefaultKey(GetOrReuseKeyFromPool());
1153         if (!SetAddressBookName(PubKeyToAddress(vchDefaultKey), ""))
1154             return DB_LOAD_FAIL;
1155     }
1156
1157     CreateThread(ThreadFlushWalletDB, &strWalletFile);
1158     return DB_LOAD_OK;
1159 }
1160
1161
1162 bool CWallet::SetAddressBookName(const string& strAddress, const string& strName)
1163 {
1164     mapAddressBook[strAddress] = strName;
1165     if (!fFileBacked)
1166         return false;
1167     return CWalletDB(strWalletFile).WriteName(strAddress, strName);
1168 }
1169
1170 bool CWallet::DelAddressBookName(const string& strAddress)
1171 {
1172     mapAddressBook.erase(strAddress);
1173     if (!fFileBacked)
1174         return false;
1175     return CWalletDB(strWalletFile).EraseName(strAddress);
1176 }
1177
1178
1179 void CWallet::PrintWallet(const CBlock& block)
1180 {
1181     CRITICAL_BLOCK(cs_mapWallet)
1182     {
1183         if (mapWallet.count(block.vtx[0].GetHash()))
1184         {
1185             CWalletTx& wtx = mapWallet[block.vtx[0].GetHash()];
1186             printf("    mine:  %d  %d  %d", wtx.GetDepthInMainChain(), wtx.GetBlocksToMaturity(), wtx.GetCredit());
1187         }
1188     }
1189     printf("\n");
1190 }
1191
1192 bool CWallet::GetTransaction(const uint256 &hashTx, CWalletTx& wtx)
1193 {
1194     CRITICAL_BLOCK(cs_mapWallet)
1195     {
1196         map<uint256, CWalletTx>::iterator mi = mapWallet.find(hashTx);
1197         if (mi != mapWallet.end())
1198         {
1199             wtx = (*mi).second;
1200             return true;
1201         }
1202     }
1203     return false;
1204 }
1205
1206 bool CWallet::SetDefaultKey(const std::vector<unsigned char> &vchPubKey)
1207 {
1208     if (fFileBacked)
1209     {
1210         if (!CWalletDB(strWalletFile).WriteDefaultKey(vchPubKey))
1211             return false;
1212     }
1213     vchDefaultKey = vchPubKey;
1214     return true;
1215 }
1216
1217 bool GetWalletFile(CWallet* pwallet, string &strWalletFileOut)
1218 {
1219     if (!pwallet->fFileBacked)
1220         return false;
1221     strWalletFileOut = pwallet->strWalletFile;
1222     return true;
1223 }
1224
1225 bool CWallet::TopUpKeyPool()
1226 {
1227     CRITICAL_BLOCK(cs_main)
1228     CRITICAL_BLOCK(cs_mapWallet)
1229     CRITICAL_BLOCK(cs_setKeyPool)
1230     CRITICAL_BLOCK(cs_vMasterKey)
1231     {
1232         if (IsLocked())
1233             return false;
1234
1235         CWalletDB walletdb(strWalletFile);
1236
1237         // Top up key pool
1238         int64 nTargetSize = max(GetArg("-keypool", 100), (int64)0);
1239         while (setKeyPool.size() < nTargetSize+1)
1240         {
1241             int64 nEnd = 1;
1242             if (!setKeyPool.empty())
1243                 nEnd = *(--setKeyPool.end()) + 1;
1244             if (!walletdb.WritePool(nEnd, CKeyPool(GenerateNewKey())))
1245                 throw runtime_error("TopUpKeyPool() : writing generated key failed");
1246             setKeyPool.insert(nEnd);
1247             printf("keypool added key %"PRI64d", size=%d\n", nEnd, setKeyPool.size());
1248         }
1249     }
1250     return true;
1251 }
1252
1253 void CWallet::ReserveKeyFromKeyPool(int64& nIndex, CKeyPool& keypool)
1254 {
1255     nIndex = -1;
1256     keypool.vchPubKey.clear();
1257     CRITICAL_BLOCK(cs_main)
1258     CRITICAL_BLOCK(cs_mapWallet)
1259     CRITICAL_BLOCK(cs_setKeyPool)
1260     {
1261         if (!IsLocked())
1262             TopUpKeyPool();
1263
1264         // Get the oldest key
1265         if(setKeyPool.empty())
1266             return;
1267
1268         CWalletDB walletdb(strWalletFile);
1269
1270         nIndex = *(setKeyPool.begin());
1271         setKeyPool.erase(setKeyPool.begin());
1272         if (!walletdb.ReadPool(nIndex, keypool))
1273             throw runtime_error("ReserveKeyFromKeyPool() : read failed");
1274         if (!HaveKey(keypool.vchPubKey))
1275             throw runtime_error("ReserveKeyFromKeyPool() : unknown key in key pool");
1276         assert(!keypool.vchPubKey.empty());
1277         printf("keypool reserve %"PRI64d"\n", nIndex);
1278     }
1279 }
1280
1281 void CWallet::KeepKey(int64 nIndex)
1282 {
1283     // Remove from key pool
1284     if (fFileBacked)
1285     {
1286         CWalletDB walletdb(strWalletFile);
1287         CRITICAL_BLOCK(cs_main)
1288         {
1289             walletdb.ErasePool(nIndex);
1290         }
1291     }
1292     printf("keypool keep %"PRI64d"\n", nIndex);
1293 }
1294
1295 void CWallet::ReturnKey(int64 nIndex)
1296 {
1297     // Return to key pool
1298     CRITICAL_BLOCK(cs_setKeyPool)
1299         setKeyPool.insert(nIndex);
1300     printf("keypool return %"PRI64d"\n", nIndex);
1301 }
1302
1303 vector<unsigned char> CWallet::GetOrReuseKeyFromPool()
1304 {
1305     int64 nIndex = 0;
1306     CKeyPool keypool;
1307     ReserveKeyFromKeyPool(nIndex, keypool);
1308     if(nIndex == -1)
1309         return vchDefaultKey;
1310     KeepKey(nIndex);
1311     return keypool.vchPubKey;
1312 }
1313
1314 int64 CWallet::GetOldestKeyPoolTime()
1315 {
1316     int64 nIndex = 0;
1317     CKeyPool keypool;
1318     ReserveKeyFromKeyPool(nIndex, keypool);
1319     if (nIndex == -1)
1320         return GetTime();
1321     ReturnKey(nIndex);
1322     return keypool.nTime;
1323 }
1324
1325 vector<unsigned char> CReserveKey::GetReservedKey()
1326 {
1327     if (nIndex == -1)
1328     {
1329         CKeyPool keypool;
1330         pwallet->ReserveKeyFromKeyPool(nIndex, keypool);
1331         if (nIndex != -1)
1332             vchPubKey = keypool.vchPubKey;
1333         else
1334         {
1335             printf("CReserveKey::GetReservedKey(): Warning: using default key instead of a new key, top up your keypool.");
1336             vchPubKey = pwallet->vchDefaultKey;
1337         }
1338     }
1339     assert(!vchPubKey.empty());
1340     return vchPubKey;
1341 }
1342
1343 void CReserveKey::KeepKey()
1344 {
1345     if (nIndex != -1)
1346         pwallet->KeepKey(nIndex);
1347     nIndex = -1;
1348     vchPubKey.clear();
1349 }
1350
1351 void CReserveKey::ReturnKey()
1352 {
1353     if (nIndex != -1)
1354         pwallet->ReturnKey(nIndex);
1355     nIndex = -1;
1356     vchPubKey.clear();
1357 }
1358