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