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