Merge bitcoin v0.4.0 into ppcoin
[novacoin.git] / src / wallet.cpp
1 // Copyright (c) 2009-2011 Satoshi Nakamoto
2 // Copyright (c) 2011 The Bitcoin developers
3 // Copyright (c) 2011 The PPCoin developers
4 // Distributed under the MIT/X11 software license, see the accompanying
5 // file license.txt or http://www.opensource.org/licenses/mit-license.php.
6
7 #include "headers.h"
8 #include "db.h"
9 #include "cryptopp/sha.h"
10 #include "crypter.h"
11
12 using namespace std;
13
14
15 //////////////////////////////////////////////////////////////////////////////
16 //
17 // mapWallet
18 //
19
20 bool CWallet::AddKey(const CKey& key)
21 {
22     if (!CCryptoKeyStore::AddKey(key))
23         return false;
24     if (!fFileBacked)
25         return true;
26     if (!IsCrypted())
27         return CWalletDB(strWalletFile).WriteKey(key.GetPubKey(), key.GetPrivKey());
28     return true;
29 }
30
31 bool CWallet::AddCryptedKey(const vector<unsigned char> &vchPubKey, const vector<unsigned char> &vchCryptedSecret)
32 {
33     if (!CCryptoKeyStore::AddCryptedKey(vchPubKey, vchCryptedSecret))
34         return false;
35     if (!fFileBacked)
36         return true;
37     CRITICAL_BLOCK(cs_wallet)
38     {
39         if (pwalletdbEncryption)
40             return pwalletdbEncryption->WriteCryptedKey(vchPubKey, vchCryptedSecret);
41         else
42             return CWalletDB(strWalletFile).WriteCryptedKey(vchPubKey, vchCryptedSecret);
43     }
44 }
45
46 bool CWallet::Unlock(const string& strWalletPassphrase)
47 {
48     if (!IsLocked())
49         return false;
50
51     CCrypter crypter;
52     CKeyingMaterial vMasterKey;
53
54     CRITICAL_BLOCK(cs_wallet)
55         BOOST_FOREACH(const MasterKeyMap::value_type& pMasterKey, mapMasterKeys)
56         {
57             if(!crypter.SetKeyFromPassphrase(strWalletPassphrase, pMasterKey.second.vchSalt, pMasterKey.second.nDeriveIterations, pMasterKey.second.nDerivationMethod))
58                 return false;
59             if (!crypter.Decrypt(pMasterKey.second.vchCryptedKey, vMasterKey))
60                 return false;
61             if (CCryptoKeyStore::Unlock(vMasterKey))
62                 return true;
63         }
64     return false;
65 }
66
67 bool CWallet::ChangeWalletPassphrase(const string& strOldWalletPassphrase, const string& strNewWalletPassphrase)
68 {
69     bool fWasLocked = IsLocked();
70
71     CRITICAL_BLOCK(cs_wallet)
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
110     return false;
111 }
112
113
114 // This class implements an addrIncoming entry that causes pre-0.4
115 // clients to crash on startup if reading a private-key-encrypted wallet.
116 class CCorruptAddress
117 {
118 public:
119     IMPLEMENT_SERIALIZE
120     (
121         if (nType & SER_DISK)
122             READWRITE(nVersion);
123     )
124 };
125
126 bool CWallet::EncryptWallet(const string& strWalletPassphrase)
127 {
128     if (IsCrypted())
129         return false;
130
131     CKeyingMaterial vMasterKey;
132     RandAddSeedPerfmon();
133
134     vMasterKey.resize(WALLET_CRYPTO_KEY_SIZE);
135     RAND_bytes(&vMasterKey[0], WALLET_CRYPTO_KEY_SIZE);
136
137     CMasterKey kMasterKey;
138
139     RandAddSeedPerfmon();
140     kMasterKey.vchSalt.resize(WALLET_CRYPTO_SALT_SIZE);
141     RAND_bytes(&kMasterKey.vchSalt[0], WALLET_CRYPTO_SALT_SIZE);
142
143     CCrypter crypter;
144     int64 nStartTime = GetTimeMillis();
145     crypter.SetKeyFromPassphrase(strWalletPassphrase, kMasterKey.vchSalt, 25000, kMasterKey.nDerivationMethod);
146     kMasterKey.nDeriveIterations = 2500000 / ((double)(GetTimeMillis() - nStartTime));
147
148     nStartTime = GetTimeMillis();
149     crypter.SetKeyFromPassphrase(strWalletPassphrase, kMasterKey.vchSalt, kMasterKey.nDeriveIterations, kMasterKey.nDerivationMethod);
150     kMasterKey.nDeriveIterations = (kMasterKey.nDeriveIterations + kMasterKey.nDeriveIterations * 100 / ((double)(GetTimeMillis() - nStartTime))) / 2;
151
152     if (kMasterKey.nDeriveIterations < 25000)
153         kMasterKey.nDeriveIterations = 25000;
154
155     printf("Encrypting Wallet with an nDeriveIterations of %i\n", kMasterKey.nDeriveIterations);
156
157     if (!crypter.SetKeyFromPassphrase(strWalletPassphrase, kMasterKey.vchSalt, kMasterKey.nDeriveIterations, kMasterKey.nDerivationMethod))
158         return false;
159     if (!crypter.Encrypt(vMasterKey, kMasterKey.vchCryptedKey))
160         return false;
161
162     CRITICAL_BLOCK(cs_wallet)
163     {
164         mapMasterKeys[++nMasterKeyMaxID] = kMasterKey;
165         if (fFileBacked)
166         {
167             pwalletdbEncryption = new CWalletDB(strWalletFile);
168             pwalletdbEncryption->TxnBegin();
169             pwalletdbEncryption->WriteMasterKey(nMasterKeyMaxID, kMasterKey);
170         }
171
172         if (!EncryptKeys(vMasterKey))
173         {
174             if (fFileBacked)
175                 pwalletdbEncryption->TxnAbort();
176             exit(1); //We now probably have half of our keys encrypted in memory, and half not...die and let the user reload their unencrypted wallet.
177         }
178
179         if (fFileBacked)
180         {
181             CCorruptAddress corruptAddress;
182             pwalletdbEncryption->WriteSetting("addrIncoming", corruptAddress);
183             if (!pwalletdbEncryption->TxnCommit())
184                 exit(1); //We now have keys encrypted in memory, but no on disk...die to avoid confusion and let the user reload their unencrypted wallet.
185
186             pwalletdbEncryption->Close();
187             pwalletdbEncryption = NULL;
188         }
189
190         Lock();
191     }
192
193     return true;
194 }
195
196 void CWallet::WalletUpdateSpent(const CTransaction &tx)
197 {
198     // Anytime a signature is successfully verified, it's proof the outpoint is spent.
199     // Update the wallet spent flag if it doesn't know due to wallet.dat being
200     // restored from backup or the user making copies of wallet.dat.
201     CRITICAL_BLOCK(cs_wallet)
202     {
203         BOOST_FOREACH(const CTxIn& txin, tx.vin)
204         {
205             map<uint256, CWalletTx>::iterator mi = mapWallet.find(txin.prevout.hash);
206             if (mi != mapWallet.end())
207             {
208                 CWalletTx& wtx = (*mi).second;
209                 if (!wtx.IsSpent(txin.prevout.n) && IsMine(wtx.vout[txin.prevout.n]))
210                 {
211                     printf("WalletUpdateSpent found spent coin %sbc %s\n", FormatMoney(wtx.GetCredit()).c_str(), wtx.GetHash().ToString().c_str());
212                     wtx.MarkSpent(txin.prevout.n);
213                     wtx.WriteToDisk();
214                     vWalletUpdated.push_back(txin.prevout.hash);
215                 }
216             }
217         }
218     }
219 }
220
221 bool CWallet::AddToWallet(const CWalletTx& wtxIn)
222 {
223     uint256 hash = wtxIn.GetHash();
224     CRITICAL_BLOCK(cs_wallet)
225     {
226         // Inserts only if not already there, returns tx inserted or tx found
227         pair<map<uint256, CWalletTx>::iterator, bool> ret = mapWallet.insert(make_pair(hash, wtxIn));
228         CWalletTx& wtx = (*ret.first).second;
229         wtx.pwallet = this;
230         bool fInsertedNew = ret.second;
231         if (fInsertedNew)
232             wtx.nTimeReceived = GetAdjustedTime();
233
234         bool fUpdated = false;
235         if (!fInsertedNew)
236         {
237             // Merge
238             if (wtxIn.hashBlock != 0 && wtxIn.hashBlock != wtx.hashBlock)
239             {
240                 wtx.hashBlock = wtxIn.hashBlock;
241                 fUpdated = true;
242             }
243             if (wtxIn.nIndex != -1 && (wtxIn.vMerkleBranch != wtx.vMerkleBranch || wtxIn.nIndex != wtx.nIndex))
244             {
245                 wtx.vMerkleBranch = wtxIn.vMerkleBranch;
246                 wtx.nIndex = wtxIn.nIndex;
247                 fUpdated = true;
248             }
249             if (wtxIn.fFromMe && wtxIn.fFromMe != wtx.fFromMe)
250             {
251                 wtx.fFromMe = wtxIn.fFromMe;
252                 fUpdated = true;
253             }
254             fUpdated |= wtx.UpdateSpent(wtxIn.vfSpent);
255         }
256
257         //// debug print
258         printf("AddToWallet %s  %s%s\n", wtxIn.GetHash().ToString().substr(0,10).c_str(), (fInsertedNew ? "new" : ""), (fUpdated ? "update" : ""));
259
260         // Write to disk
261         if (fInsertedNew || fUpdated)
262             if (!wtx.WriteToDisk())
263                 return false;
264
265         // If default receiving address gets used, replace it with a new one
266         CScript scriptDefaultKey;
267         scriptDefaultKey.SetBitcoinAddress(vchDefaultKey);
268         BOOST_FOREACH(const CTxOut& txout, wtx.vout)
269         {
270             if (txout.scriptPubKey == scriptDefaultKey)
271             {
272                 std::vector<unsigned char> newDefaultKey;
273                 if (GetKeyFromPool(newDefaultKey, false))
274                 {
275                     SetDefaultKey(newDefaultKey);
276                     SetAddressBookName(CBitcoinAddress(vchDefaultKey), "");
277                 }
278             }
279         }
280
281         // Notify UI
282         vWalletUpdated.push_back(hash);
283
284         // since AddToWallet is called directly for self-originating transactions, check for consumption of own coins
285         WalletUpdateSpent(wtx);
286     }
287
288     // Refresh UI
289     MainFrameRepaint();
290     return true;
291 }
292
293 bool CWallet::AddToWalletIfInvolvingMe(const CTransaction& tx, const CBlock* pblock, bool fUpdate)
294 {
295     uint256 hash = tx.GetHash();
296     CRITICAL_BLOCK(cs_wallet)
297     {
298         bool fExisted = mapWallet.count(hash);
299         if (fExisted && !fUpdate) return false;
300         if (fExisted || IsMine(tx) || IsFromMe(tx))
301         {
302             CWalletTx wtx(this,tx);
303             // Get merkle branch if transaction was found in a block
304             if (pblock)
305                 wtx.SetMerkleBranch(pblock);
306             return AddToWallet(wtx);
307         }
308         else
309             WalletUpdateSpent(tx);
310     }
311     return false;
312 }
313
314 bool CWallet::EraseFromWallet(uint256 hash)
315 {
316     if (!fFileBacked)
317         return false;
318     CRITICAL_BLOCK(cs_wallet)
319     {
320         if (mapWallet.erase(hash))
321             CWalletDB(strWalletFile).EraseTx(hash);
322     }
323     return true;
324 }
325
326
327 bool CWallet::IsMine(const CTxIn &txin) const
328 {
329     CRITICAL_BLOCK(cs_wallet)
330     {
331         map<uint256, CWalletTx>::const_iterator mi = mapWallet.find(txin.prevout.hash);
332         if (mi != mapWallet.end())
333         {
334             const CWalletTx& prev = (*mi).second;
335             if (txin.prevout.n < prev.vout.size())
336                 if (IsMine(prev.vout[txin.prevout.n]))
337                     return true;
338         }
339     }
340     return false;
341 }
342
343 int64 CWallet::GetDebit(const CTxIn &txin) const
344 {
345     CRITICAL_BLOCK(cs_wallet)
346     {
347         map<uint256, CWalletTx>::const_iterator mi = mapWallet.find(txin.prevout.hash);
348         if (mi != mapWallet.end())
349         {
350             const CWalletTx& prev = (*mi).second;
351             if (txin.prevout.n < prev.vout.size())
352                 if (IsMine(prev.vout[txin.prevout.n]))
353                     return prev.vout[txin.prevout.n].nValue;
354         }
355     }
356     return 0;
357 }
358
359 int64 CWalletTx::GetTxTime() const
360 {
361     return nTimeReceived;
362 }
363
364 int CWalletTx::GetRequestCount() const
365 {
366     // Returns -1 if it wasn't being tracked
367     int nRequests = -1;
368     CRITICAL_BLOCK(pwallet->cs_wallet)
369     {
370         if (IsCoinBase())
371         {
372             // Generated block
373             if (hashBlock != 0)
374             {
375                 map<uint256, int>::const_iterator mi = pwallet->mapRequestCount.find(hashBlock);
376                 if (mi != pwallet->mapRequestCount.end())
377                     nRequests = (*mi).second;
378             }
379         }
380         else
381         {
382             // Did anyone request this transaction?
383             map<uint256, int>::const_iterator mi = pwallet->mapRequestCount.find(GetHash());
384             if (mi != pwallet->mapRequestCount.end())
385             {
386                 nRequests = (*mi).second;
387
388                 // How about the block it's in?
389                 if (nRequests == 0 && hashBlock != 0)
390                 {
391                     map<uint256, int>::const_iterator mi = pwallet->mapRequestCount.find(hashBlock);
392                     if (mi != pwallet->mapRequestCount.end())
393                         nRequests = (*mi).second;
394                     else
395                         nRequests = 1; // If it's in someone else's block it must have got out
396                 }
397             }
398         }
399     }
400     return nRequests;
401 }
402
403 void CWalletTx::GetAmounts(int64& nGeneratedImmature, int64& nGeneratedMature, list<pair<CBitcoinAddress, int64> >& listReceived,
404                            list<pair<CBitcoinAddress, int64> >& listSent, int64& nFee, string& strSentAccount) const
405 {
406     nGeneratedImmature = nGeneratedMature = nFee = 0;
407     listReceived.clear();
408     listSent.clear();
409     strSentAccount = strFromAccount;
410
411     if (IsCoinBase())
412     {
413         if (GetBlocksToMaturity() > 0)
414             nGeneratedImmature = pwallet->GetCredit(*this);
415         else
416             nGeneratedMature = GetCredit();
417         return;
418     }
419
420     // Compute fee:
421     int64 nDebit = GetDebit();
422     if (nDebit > 0) // debit>0 means we signed/sent this transaction
423     {
424         int64 nValueOut = GetValueOut();
425         nFee = nDebit - nValueOut;
426     }
427
428     // Sent/received.  Standard client will never generate a send-to-multiple-recipients,
429     // but non-standard clients might (so return a list of address/amount pairs)
430     BOOST_FOREACH(const CTxOut& txout, vout)
431     {
432         CBitcoinAddress address;
433         vector<unsigned char> vchPubKey;
434         if (!ExtractAddress(txout.scriptPubKey, NULL, address))
435         {
436             printf("CWalletTx::GetAmounts: Unknown transaction type found, txid %s\n",
437                    this->GetHash().ToString().c_str());
438             address = " unknown ";
439         }
440
441         // Don't report 'change' txouts
442         if (nDebit > 0 && pwallet->IsChange(txout))
443             continue;
444
445         if (nDebit > 0)
446             listSent.push_back(make_pair(address, txout.nValue));
447
448         if (pwallet->IsMine(txout))
449             listReceived.push_back(make_pair(address, txout.nValue));
450     }
451
452 }
453
454 void CWalletTx::GetAccountAmounts(const string& strAccount, int64& nGenerated, int64& nReceived, 
455                                   int64& nSent, int64& nFee) const
456 {
457     nGenerated = nReceived = nSent = nFee = 0;
458
459     int64 allGeneratedImmature, allGeneratedMature, allFee;
460     allGeneratedImmature = allGeneratedMature = allFee = 0;
461     string strSentAccount;
462     list<pair<CBitcoinAddress, int64> > listReceived;
463     list<pair<CBitcoinAddress, int64> > listSent;
464     GetAmounts(allGeneratedImmature, allGeneratedMature, listReceived, listSent, allFee, strSentAccount);
465
466     if (strAccount == "")
467         nGenerated = allGeneratedMature;
468     if (strAccount == strSentAccount)
469     {
470         BOOST_FOREACH(const PAIRTYPE(CBitcoinAddress,int64)& s, listSent)
471             nSent += s.second;
472         nFee = allFee;
473     }
474     CRITICAL_BLOCK(pwallet->cs_wallet)
475     {
476         BOOST_FOREACH(const PAIRTYPE(CBitcoinAddress,int64)& r, listReceived)
477         {
478             if (pwallet->mapAddressBook.count(r.first))
479             {
480                 map<CBitcoinAddress, string>::const_iterator mi = pwallet->mapAddressBook.find(r.first);
481                 if (mi != pwallet->mapAddressBook.end() && (*mi).second == strAccount)
482                     nReceived += r.second;
483             }
484             else if (strAccount.empty())
485             {
486                 nReceived += r.second;
487             }
488         }
489     }
490 }
491
492 void CWalletTx::AddSupportingTransactions(CTxDB& txdb)
493 {
494     vtxPrev.clear();
495
496     const int COPY_DEPTH = 3;
497     if (SetMerkleBranch() < COPY_DEPTH)
498     {
499         vector<uint256> vWorkQueue;
500         BOOST_FOREACH(const CTxIn& txin, vin)
501             vWorkQueue.push_back(txin.prevout.hash);
502
503         // This critsect is OK because txdb is already open
504         CRITICAL_BLOCK(pwallet->cs_wallet)
505         {
506             map<uint256, const CMerkleTx*> mapWalletPrev;
507             set<uint256> setAlreadyDone;
508             for (int i = 0; i < vWorkQueue.size(); i++)
509             {
510                 uint256 hash = vWorkQueue[i];
511                 if (setAlreadyDone.count(hash))
512                     continue;
513                 setAlreadyDone.insert(hash);
514
515                 CMerkleTx tx;
516                 map<uint256, CWalletTx>::const_iterator mi = pwallet->mapWallet.find(hash);
517                 if (mi != pwallet->mapWallet.end())
518                 {
519                     tx = (*mi).second;
520                     BOOST_FOREACH(const CMerkleTx& txWalletPrev, (*mi).second.vtxPrev)
521                         mapWalletPrev[txWalletPrev.GetHash()] = &txWalletPrev;
522                 }
523                 else if (mapWalletPrev.count(hash))
524                 {
525                     tx = *mapWalletPrev[hash];
526                 }
527                 else if (!fClient && txdb.ReadDiskTx(hash, tx))
528                 {
529                     ;
530                 }
531                 else
532                 {
533                     printf("ERROR: AddSupportingTransactions() : unsupported transaction\n");
534                     continue;
535                 }
536
537                 int nDepth = tx.SetMerkleBranch();
538                 vtxPrev.push_back(tx);
539
540                 if (nDepth < COPY_DEPTH)
541                     BOOST_FOREACH(const CTxIn& txin, tx.vin)
542                         vWorkQueue.push_back(txin.prevout.hash);
543             }
544         }
545     }
546
547     reverse(vtxPrev.begin(), vtxPrev.end());
548 }
549
550 bool CWalletTx::WriteToDisk()
551 {
552     return CWalletDB(pwallet->strWalletFile).WriteTx(GetHash(), *this);
553 }
554
555 int CWallet::ScanForWalletTransactions(CBlockIndex* pindexStart, bool fUpdate)
556 {
557     int ret = 0;
558
559     CBlockIndex* pindex = pindexStart;
560     CRITICAL_BLOCK(cs_wallet)
561     {
562         while (pindex)
563         {
564             CBlock block;
565             block.ReadFromDisk(pindex, true);
566             BOOST_FOREACH(CTransaction& tx, block.vtx)
567             {
568                 if (AddToWalletIfInvolvingMe(tx, &block, fUpdate))
569                     ret++;
570             }
571             pindex = pindex->pnext;
572         }
573     }
574     return ret;
575 }
576
577 void CWallet::ReacceptWalletTransactions()
578 {
579     CTxDB txdb("r");
580     bool fRepeat = true;
581     while (fRepeat) CRITICAL_BLOCK(cs_wallet)
582     {
583         fRepeat = false;
584         vector<CDiskTxPos> vMissingTx;
585         BOOST_FOREACH(PAIRTYPE(const uint256, CWalletTx)& item, mapWallet)
586         {
587             CWalletTx& wtx = item.second;
588             if (wtx.IsCoinBase() && wtx.IsSpent(0))
589                 continue;
590
591             CTxIndex txindex;
592             bool fUpdated = false;
593             if (txdb.ReadTxIndex(wtx.GetHash(), txindex))
594             {
595                 // Update fSpent if a tx got spent somewhere else by a copy of wallet.dat
596                 if (txindex.vSpent.size() != wtx.vout.size())
597                 {
598                     printf("ERROR: ReacceptWalletTransactions() : txindex.vSpent.size() %d != wtx.vout.size() %d\n", txindex.vSpent.size(), wtx.vout.size());
599                     continue;
600                 }
601                 for (int i = 0; i < txindex.vSpent.size(); i++)
602                 {
603                     if (wtx.IsSpent(i))
604                         continue;
605                     if (!txindex.vSpent[i].IsNull() && IsMine(wtx.vout[i]))
606                     {
607                         wtx.MarkSpent(i);
608                         fUpdated = true;
609                         vMissingTx.push_back(txindex.vSpent[i]);
610                     }
611                 }
612                 if (fUpdated)
613                 {
614                     printf("ReacceptWalletTransactions found spent coin %sbc %s\n", FormatMoney(wtx.GetCredit()).c_str(), wtx.GetHash().ToString().c_str());
615                     wtx.MarkDirty();
616                     wtx.WriteToDisk();
617                 }
618             }
619             else
620             {
621                 // Reaccept any txes of ours that aren't already in a block
622                 if (!wtx.IsCoinBase())
623                     wtx.AcceptWalletTransaction(txdb, false);
624             }
625         }
626         if (!vMissingTx.empty())
627         {
628             // TODO: optimize this to scan just part of the block chain?
629             if (ScanForWalletTransactions(pindexGenesisBlock))
630                 fRepeat = true;  // Found missing transactions: re-do Reaccept.
631         }
632     }
633 }
634
635 void CWalletTx::RelayWalletTransaction(CTxDB& txdb)
636 {
637     BOOST_FOREACH(const CMerkleTx& tx, vtxPrev)
638     {
639         if (!tx.IsCoinBase())
640         {
641             uint256 hash = tx.GetHash();
642             if (!txdb.ContainsTx(hash))
643                 RelayMessage(CInv(MSG_TX, hash), (CTransaction)tx);
644         }
645     }
646     if (!IsCoinBase())
647     {
648         uint256 hash = GetHash();
649         if (!txdb.ContainsTx(hash))
650         {
651             printf("Relaying wtx %s\n", hash.ToString().substr(0,10).c_str());
652             RelayMessage(CInv(MSG_TX, hash), (CTransaction)*this);
653         }
654     }
655 }
656
657 void CWalletTx::RelayWalletTransaction()
658 {
659    CTxDB txdb("r");
660    RelayWalletTransaction(txdb);
661 }
662
663 void CWallet::ResendWalletTransactions()
664 {
665     // Do this infrequently and randomly to avoid giving away
666     // that these are our transactions.
667     static int64 nNextTime;
668     if (GetTime() < nNextTime)
669         return;
670     bool fFirst = (nNextTime == 0);
671     nNextTime = GetTime() + GetRand(30 * 60);
672     if (fFirst)
673         return;
674
675     // Only do it if there's been a new block since last time
676     static int64 nLastTime;
677     if (nTimeBestReceived < nLastTime)
678         return;
679     nLastTime = GetTime();
680
681     // Rebroadcast any of our txes that aren't in a block yet
682     printf("ResendWalletTransactions()\n");
683     CTxDB txdb("r");
684     CRITICAL_BLOCK(cs_wallet)
685     {
686         // Sort them in chronological order
687         multimap<unsigned int, CWalletTx*> mapSorted;
688         BOOST_FOREACH(PAIRTYPE(const uint256, CWalletTx)& item, mapWallet)
689         {
690             CWalletTx& wtx = item.second;
691             // Don't rebroadcast until it's had plenty of time that
692             // it should have gotten in already by now.
693             if (nTimeBestReceived - (int64)wtx.nTimeReceived > 5 * 60)
694                 mapSorted.insert(make_pair(wtx.nTimeReceived, &wtx));
695         }
696         BOOST_FOREACH(PAIRTYPE(const unsigned int, CWalletTx*)& item, mapSorted)
697         {
698             CWalletTx& wtx = *item.second;
699             wtx.RelayWalletTransaction(txdb);
700         }
701     }
702 }
703
704
705
706
707
708
709 //////////////////////////////////////////////////////////////////////////////
710 //
711 // Actions
712 //
713
714
715 int64 CWallet::GetBalance() const
716 {
717     int64 nTotal = 0;
718     CRITICAL_BLOCK(cs_wallet)
719     {
720         for (map<uint256, CWalletTx>::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
721         {
722             const CWalletTx* pcoin = &(*it).second;
723             if (!pcoin->IsFinal() || !pcoin->IsConfirmed())
724                 continue;
725             nTotal += pcoin->GetAvailableCredit();
726         }
727     }
728
729     return nTotal;
730 }
731
732
733 bool CWallet::SelectCoinsMinConf(int64 nTargetValue, int nConfMine, int nConfTheirs, set<pair<const CWalletTx*,unsigned int> >& setCoinsRet, int64& nValueRet) const
734 {
735     setCoinsRet.clear();
736     nValueRet = 0;
737
738     // List of values less than target
739     pair<int64, pair<const CWalletTx*,unsigned int> > coinLowestLarger;
740     coinLowestLarger.first = INT64_MAX;
741     coinLowestLarger.second.first = NULL;
742     vector<pair<int64, pair<const CWalletTx*,unsigned int> > > vValue;
743     int64 nTotalLower = 0;
744
745     CRITICAL_BLOCK(cs_wallet)
746     {
747        vector<const CWalletTx*> vCoins;
748        vCoins.reserve(mapWallet.size());
749        for (map<uint256, CWalletTx>::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
750            vCoins.push_back(&(*it).second);
751        random_shuffle(vCoins.begin(), vCoins.end(), GetRandInt);
752
753        BOOST_FOREACH(const CWalletTx* pcoin, vCoins)
754        {
755             if (!pcoin->IsFinal() || !pcoin->IsConfirmed())
756                 continue;
757
758             if (pcoin->IsCoinBase() && pcoin->GetBlocksToMaturity() > 0)
759                 continue;
760
761             int nDepth = pcoin->GetDepthInMainChain();
762             if (nDepth < (pcoin->IsFromMe() ? nConfMine : nConfTheirs))
763                 continue;
764
765             for (int i = 0; i < pcoin->vout.size(); i++)
766             {
767                 if (pcoin->IsSpent(i) || !IsMine(pcoin->vout[i]))
768                     continue;
769
770                 int64 n = pcoin->vout[i].nValue;
771
772                 if (n <= 0)
773                     continue;
774
775                 pair<int64,pair<const CWalletTx*,unsigned int> > coin = make_pair(n,make_pair(pcoin,i));
776
777                 if (n == nTargetValue)
778                 {
779                     setCoinsRet.insert(coin.second);
780                     nValueRet += coin.first;
781                     return true;
782                 }
783                 else if (n < nTargetValue + CENT)
784                 {
785                     vValue.push_back(coin);
786                     nTotalLower += n;
787                 }
788                 else if (n < coinLowestLarger.first)
789                 {
790                     coinLowestLarger = coin;
791                 }
792             }
793         }
794     }
795
796     if (nTotalLower == nTargetValue || nTotalLower == nTargetValue + CENT)
797     {
798         for (int i = 0; i < vValue.size(); ++i)
799         {
800             setCoinsRet.insert(vValue[i].second);
801             nValueRet += vValue[i].first;
802         }
803         return true;
804     }
805
806     if (nTotalLower < nTargetValue + (coinLowestLarger.second.first ? CENT : 0))
807     {
808         if (coinLowestLarger.second.first == NULL)
809             return false;
810         setCoinsRet.insert(coinLowestLarger.second);
811         nValueRet += coinLowestLarger.first;
812         return true;
813     }
814
815     if (nTotalLower >= nTargetValue + CENT)
816         nTargetValue += CENT;
817
818     // Solve subset sum by stochastic approximation
819     sort(vValue.rbegin(), vValue.rend());
820     vector<char> vfIncluded;
821     vector<char> vfBest(vValue.size(), true);
822     int64 nBest = nTotalLower;
823
824     for (int nRep = 0; nRep < 1000 && nBest != nTargetValue; nRep++)
825     {
826         vfIncluded.assign(vValue.size(), false);
827         int64 nTotal = 0;
828         bool fReachedTarget = false;
829         for (int nPass = 0; nPass < 2 && !fReachedTarget; nPass++)
830         {
831             for (int i = 0; i < vValue.size(); i++)
832             {
833                 if (nPass == 0 ? rand() % 2 : !vfIncluded[i])
834                 {
835                     nTotal += vValue[i].first;
836                     vfIncluded[i] = true;
837                     if (nTotal >= nTargetValue)
838                     {
839                         fReachedTarget = true;
840                         if (nTotal < nBest)
841                         {
842                             nBest = nTotal;
843                             vfBest = vfIncluded;
844                         }
845                         nTotal -= vValue[i].first;
846                         vfIncluded[i] = false;
847                     }
848                 }
849             }
850         }
851     }
852
853     // If the next larger is still closer, return it
854     if (coinLowestLarger.second.first && coinLowestLarger.first - nTargetValue <= nBest - nTargetValue)
855     {
856         setCoinsRet.insert(coinLowestLarger.second);
857         nValueRet += coinLowestLarger.first;
858     }
859     else {
860         for (int i = 0; i < vValue.size(); i++)
861             if (vfBest[i])
862             {
863                 setCoinsRet.insert(vValue[i].second);
864                 nValueRet += vValue[i].first;
865             }
866
867         //// debug print
868         printf("SelectCoins() best subset: ");
869         for (int i = 0; i < vValue.size(); i++)
870             if (vfBest[i])
871                 printf("%s ", FormatMoney(vValue[i].first).c_str());
872         printf("total %s\n", FormatMoney(nBest).c_str());
873     }
874
875     return true;
876 }
877
878 bool CWallet::SelectCoins(int64 nTargetValue, set<pair<const CWalletTx*,unsigned int> >& setCoinsRet, int64& nValueRet) const
879 {
880     return (SelectCoinsMinConf(nTargetValue, 1, 6, setCoinsRet, nValueRet) ||
881             SelectCoinsMinConf(nTargetValue, 1, 1, setCoinsRet, nValueRet) ||
882             SelectCoinsMinConf(nTargetValue, 0, 1, setCoinsRet, nValueRet));
883 }
884
885
886
887
888 bool CWallet::CreateTransaction(const vector<pair<CScript, int64> >& vecSend, CWalletTx& wtxNew, CReserveKey& reservekey, int64& nFeeRet)
889 {
890     int64 nValue = 0;
891     BOOST_FOREACH (const PAIRTYPE(CScript, int64)& s, vecSend)
892     {
893         if (nValue < 0)
894             return false;
895         nValue += s.second;
896     }
897     if (vecSend.empty() || nValue < 0)
898         return false;
899
900     wtxNew.pwallet = this;
901
902     CRITICAL_BLOCK(cs_main)
903     CRITICAL_BLOCK(cs_wallet)
904     {
905         // txdb must be opened before the mapWallet lock
906         CTxDB txdb("r");
907         {
908             nFeeRet = nTransactionFee;
909             loop
910             {
911                 wtxNew.vin.clear();
912                 wtxNew.vout.clear();
913                 wtxNew.fFromMe = true;
914
915                 int64 nTotalValue = nValue + nFeeRet;
916                 double dPriority = 0;
917                 // vouts to the payees
918                 BOOST_FOREACH (const PAIRTYPE(CScript, int64)& s, vecSend)
919                     wtxNew.vout.push_back(CTxOut(s.second, s.first));
920
921                 // Choose coins to use
922                 set<pair<const CWalletTx*,unsigned int> > setCoins;
923                 int64 nValueIn = 0;
924                 if (!SelectCoins(nTotalValue, setCoins, nValueIn))
925                     return false;
926                 BOOST_FOREACH(PAIRTYPE(const CWalletTx*, unsigned int) pcoin, setCoins)
927                 {
928                     int64 nCredit = pcoin.first->vout[pcoin.second].nValue;
929                     dPriority += (double)nCredit * pcoin.first->GetDepthInMainChain();
930                 }
931
932                 int64 nChange = nValueIn - nValue - nFeeRet;
933                 // if sub-cent change is required, the fee must be raised to at least MIN_TX_FEE
934                 // or until nChange becomes zero
935                 if (nFeeRet < MIN_TX_FEE && nChange > 0 && nChange < CENT)
936                 {
937                     int64 nMoveToFee = min(nChange, MIN_TX_FEE - nFeeRet);
938                     nChange -= nMoveToFee;
939                     nFeeRet += nMoveToFee;
940                 }
941
942                 if (nChange > 0)
943                 {
944                     // Note: We use a new key here to keep it from being obvious which side is the change.
945                     //  The drawback is that by not reusing a previous key, the change may be lost if a
946                     //  backup is restored, if the backup doesn't have the new private key for the change.
947                     //  If we reused the old key, it would be possible to add code to look for and
948                     //  rediscover unknown transactions that were written with keys of ours to recover
949                     //  post-backup change.
950
951                     // Reserve a new key pair from key pool
952                     vector<unsigned char> vchPubKey = reservekey.GetReservedKey();
953                     // assert(mapKeys.count(vchPubKey));
954
955                     // Fill a vout to ourself, using same address type as the payment
956                     CScript scriptChange;
957                     if (vecSend[0].first.GetBitcoinAddress().IsValid())
958                         scriptChange.SetBitcoinAddress(vchPubKey);
959                     else
960                         scriptChange << vchPubKey << OP_CHECKSIG;
961
962                     // Insert change txn at random position:
963                     vector<CTxOut>::iterator position = wtxNew.vout.begin()+GetRandInt(wtxNew.vout.size());
964                     wtxNew.vout.insert(position, CTxOut(nChange, scriptChange));
965                 }
966                 else
967                     reservekey.ReturnKey();
968
969                 // Fill vin
970                 BOOST_FOREACH(const PAIRTYPE(const CWalletTx*,unsigned int)& coin, setCoins)
971                     wtxNew.vin.push_back(CTxIn(coin.first->GetHash(),coin.second));
972
973                 // Sign
974                 int nIn = 0;
975                 BOOST_FOREACH(const PAIRTYPE(const CWalletTx*,unsigned int)& coin, setCoins)
976                     if (!SignSignature(*this, *coin.first, wtxNew, nIn++))
977                         return false;
978
979                 // Limit size
980                 unsigned int nBytes = ::GetSerializeSize(*(CTransaction*)&wtxNew, SER_NETWORK);
981                 if (nBytes >= MAX_BLOCK_SIZE_GEN/5)
982                     return false;
983                 dPriority /= nBytes;
984
985                 // Check that enough fee is included
986                 int64 nPayFee = nTransactionFee;   // ppcoin: simplify tx fee
987                 int64 nMinFee = wtxNew.GetMinFee(1, false);
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