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