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.
8 #include "cryptopp/sha.h"
14 //////////////////////////////////////////////////////////////////////////////
19 bool CWallet::AddKey(const CKey& key)
21 if (!CCryptoKeyStore::AddKey(key))
26 return CWalletDB(strWalletFile).WriteKey(key.GetPubKey(), key.GetPrivKey());
30 bool CWallet::AddCryptedKey(const vector<unsigned char> &vchPubKey, const vector<unsigned char> &vchCryptedSecret)
32 if (!CCryptoKeyStore::AddCryptedKey(vchPubKey, vchCryptedSecret))
36 CRITICAL_BLOCK(cs_wallet)
38 if (pwalletdbEncryption)
39 return pwalletdbEncryption->WriteCryptedKey(vchPubKey, vchCryptedSecret);
41 return CWalletDB(strWalletFile).WriteCryptedKey(vchPubKey, vchCryptedSecret);
45 bool CWallet::Unlock(const string& strWalletPassphrase)
51 CKeyingMaterial vMasterKey;
53 CRITICAL_BLOCK(cs_wallet)
54 BOOST_FOREACH(const MasterKeyMap::value_type& pMasterKey, mapMasterKeys)
56 if(!crypter.SetKeyFromPassphrase(strWalletPassphrase, pMasterKey.second.vchSalt, pMasterKey.second.nDeriveIterations, pMasterKey.second.nDerivationMethod))
58 if (!crypter.Decrypt(pMasterKey.second.vchCryptedKey, vMasterKey))
60 if (CCryptoKeyStore::Unlock(vMasterKey))
66 bool CWallet::ChangeWalletPassphrase(const string& strOldWalletPassphrase, const string& strNewWalletPassphrase)
68 bool fWasLocked = IsLocked();
70 CRITICAL_BLOCK(cs_wallet)
75 CKeyingMaterial vMasterKey;
76 BOOST_FOREACH(MasterKeyMap::value_type& pMasterKey, mapMasterKeys)
78 if(!crypter.SetKeyFromPassphrase(strOldWalletPassphrase, pMasterKey.second.vchSalt, pMasterKey.second.nDeriveIterations, pMasterKey.second.nDerivationMethod))
80 if (!crypter.Decrypt(pMasterKey.second.vchCryptedKey, vMasterKey))
82 if (CCryptoKeyStore::Unlock(vMasterKey))
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)));
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;
92 if (pMasterKey.second.nDeriveIterations < 25000)
93 pMasterKey.second.nDeriveIterations = 25000;
95 printf("Wallet passphrase changed to an nDeriveIterations of %i\n", pMasterKey.second.nDeriveIterations);
97 if (!crypter.SetKeyFromPassphrase(strNewWalletPassphrase, pMasterKey.second.vchSalt, pMasterKey.second.nDeriveIterations, pMasterKey.second.nDerivationMethod))
99 if (!crypter.Encrypt(vMasterKey, pMasterKey.second.vchCryptedKey))
101 CWalletDB(strWalletFile).WriteMasterKey(pMasterKey.first, pMasterKey.second);
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
120 if (nType & SER_DISK)
125 bool CWallet::EncryptWallet(const string& strWalletPassphrase)
130 CKeyingMaterial vMasterKey;
131 RandAddSeedPerfmon();
133 vMasterKey.resize(WALLET_CRYPTO_KEY_SIZE);
134 RAND_bytes(&vMasterKey[0], WALLET_CRYPTO_KEY_SIZE);
136 CMasterKey kMasterKey;
138 RandAddSeedPerfmon();
139 kMasterKey.vchSalt.resize(WALLET_CRYPTO_SALT_SIZE);
140 RAND_bytes(&kMasterKey.vchSalt[0], WALLET_CRYPTO_SALT_SIZE);
143 int64 nStartTime = GetTimeMillis();
144 crypter.SetKeyFromPassphrase(strWalletPassphrase, kMasterKey.vchSalt, 25000, kMasterKey.nDerivationMethod);
145 kMasterKey.nDeriveIterations = 2500000 / ((double)(GetTimeMillis() - nStartTime));
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;
151 if (kMasterKey.nDeriveIterations < 25000)
152 kMasterKey.nDeriveIterations = 25000;
154 printf("Encrypting Wallet with an nDeriveIterations of %i\n", kMasterKey.nDeriveIterations);
156 if (!crypter.SetKeyFromPassphrase(strWalletPassphrase, kMasterKey.vchSalt, kMasterKey.nDeriveIterations, kMasterKey.nDerivationMethod))
158 if (!crypter.Encrypt(vMasterKey, kMasterKey.vchCryptedKey))
161 CRITICAL_BLOCK(cs_wallet)
163 mapMasterKeys[++nMasterKeyMaxID] = kMasterKey;
166 pwalletdbEncryption = new CWalletDB(strWalletFile);
167 pwalletdbEncryption->TxnBegin();
168 pwalletdbEncryption->WriteMasterKey(nMasterKeyMaxID, kMasterKey);
171 if (!EncryptKeys(vMasterKey))
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.
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.
185 pwalletdbEncryption->Close();
186 pwalletdbEncryption = NULL;
195 void CWallet::WalletUpdateSpent(const CTransaction &tx)
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)
202 BOOST_FOREACH(const CTxIn& txin, tx.vin)
204 map<uint256, CWalletTx>::iterator mi = mapWallet.find(txin.prevout.hash);
205 if (mi != mapWallet.end())
207 CWalletTx& wtx = (*mi).second;
208 if (!wtx.IsSpent(txin.prevout.n) && IsMine(wtx.vout[txin.prevout.n]))
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);
213 vWalletUpdated.push_back(txin.prevout.hash);
220 bool CWallet::AddToWallet(const CWalletTx& wtxIn)
222 uint256 hash = wtxIn.GetHash();
223 CRITICAL_BLOCK(cs_wallet)
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;
229 bool fInsertedNew = ret.second;
231 wtx.nTimeReceived = GetAdjustedTime();
233 bool fUpdated = false;
237 if (wtxIn.hashBlock != 0 && wtxIn.hashBlock != wtx.hashBlock)
239 wtx.hashBlock = wtxIn.hashBlock;
242 if (wtxIn.nIndex != -1 && (wtxIn.vMerkleBranch != wtx.vMerkleBranch || wtxIn.nIndex != wtx.nIndex))
244 wtx.vMerkleBranch = wtxIn.vMerkleBranch;
245 wtx.nIndex = wtxIn.nIndex;
248 if (wtxIn.fFromMe && wtxIn.fFromMe != wtx.fFromMe)
250 wtx.fFromMe = wtxIn.fFromMe;
253 fUpdated |= wtx.UpdateSpent(wtxIn.vfSpent);
257 printf("AddToWallet %s %s%s\n", wtxIn.GetHash().ToString().substr(0,10).c_str(), (fInsertedNew ? "new" : ""), (fUpdated ? "update" : ""));
260 if (fInsertedNew || fUpdated)
261 if (!wtx.WriteToDisk())
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)
269 if (txout.scriptPubKey == scriptDefaultKey)
271 std::vector<unsigned char> newDefaultKey;
272 if (GetKeyFromPool(newDefaultKey, false))
274 SetDefaultKey(newDefaultKey);
275 SetAddressBookName(CBitcoinAddress(vchDefaultKey), "");
281 vWalletUpdated.push_back(hash);
283 // since AddToWallet is called directly for self-originating transactions, check for consumption of own coins
284 WalletUpdateSpent(wtx);
292 bool CWallet::AddToWalletIfInvolvingMe(const CTransaction& tx, const CBlock* pblock, bool fUpdate)
294 uint256 hash = tx.GetHash();
295 CRITICAL_BLOCK(cs_wallet)
297 bool fExisted = mapWallet.count(hash);
298 if (fExisted && !fUpdate) return false;
299 if (fExisted || IsMine(tx) || IsFromMe(tx))
301 CWalletTx wtx(this,tx);
302 // Get merkle branch if transaction was found in a block
304 wtx.SetMerkleBranch(pblock);
305 return AddToWallet(wtx);
308 WalletUpdateSpent(tx);
313 bool CWallet::EraseFromWallet(uint256 hash)
317 CRITICAL_BLOCK(cs_wallet)
319 if (mapWallet.erase(hash))
320 CWalletDB(strWalletFile).EraseTx(hash);
326 bool CWallet::IsMine(const CTxIn &txin) const
328 CRITICAL_BLOCK(cs_wallet)
330 map<uint256, CWalletTx>::const_iterator mi = mapWallet.find(txin.prevout.hash);
331 if (mi != mapWallet.end())
333 const CWalletTx& prev = (*mi).second;
334 if (txin.prevout.n < prev.vout.size())
335 if (IsMine(prev.vout[txin.prevout.n]))
342 int64 CWallet::GetDebit(const CTxIn &txin) const
344 CRITICAL_BLOCK(cs_wallet)
346 map<uint256, CWalletTx>::const_iterator mi = mapWallet.find(txin.prevout.hash);
347 if (mi != mapWallet.end())
349 const CWalletTx& prev = (*mi).second;
350 if (txin.prevout.n < prev.vout.size())
351 if (IsMine(prev.vout[txin.prevout.n]))
352 return prev.vout[txin.prevout.n].nValue;
358 int64 CWalletTx::GetTxTime() const
360 return nTimeReceived;
363 int CWalletTx::GetRequestCount() const
365 // Returns -1 if it wasn't being tracked
367 CRITICAL_BLOCK(pwallet->cs_wallet)
374 map<uint256, int>::const_iterator mi = pwallet->mapRequestCount.find(hashBlock);
375 if (mi != pwallet->mapRequestCount.end())
376 nRequests = (*mi).second;
381 // Did anyone request this transaction?
382 map<uint256, int>::const_iterator mi = pwallet->mapRequestCount.find(GetHash());
383 if (mi != pwallet->mapRequestCount.end())
385 nRequests = (*mi).second;
387 // How about the block it's in?
388 if (nRequests == 0 && hashBlock != 0)
390 map<uint256, int>::const_iterator mi = pwallet->mapRequestCount.find(hashBlock);
391 if (mi != pwallet->mapRequestCount.end())
392 nRequests = (*mi).second;
394 nRequests = 1; // If it's in someone else's block it must have got out
402 void CWalletTx::GetAmounts(int64& nGeneratedImmature, int64& nGeneratedMature, list<pair<CBitcoinAddress, int64> >& listReceived,
403 list<pair<CBitcoinAddress, int64> >& listSent, int64& nFee, string& strSentAccount) const
405 nGeneratedImmature = nGeneratedMature = nFee = 0;
406 listReceived.clear();
408 strSentAccount = strFromAccount;
412 if (GetBlocksToMaturity() > 0)
413 nGeneratedImmature = pwallet->GetCredit(*this);
415 nGeneratedMature = GetCredit();
420 int64 nDebit = GetDebit();
421 if (nDebit > 0) // debit>0 means we signed/sent this transaction
423 int64 nValueOut = GetValueOut();
424 nFee = nDebit - nValueOut;
427 // Sent/received. Standard client will never generate a send-to-multiple-recipients,
428 // but non-standard clients might (so return a list of address/amount pairs)
429 BOOST_FOREACH(const CTxOut& txout, vout)
431 CBitcoinAddress address;
432 vector<unsigned char> vchPubKey;
433 if (!ExtractAddress(txout.scriptPubKey, NULL, address))
435 printf("CWalletTx::GetAmounts: Unknown transaction type found, txid %s\n",
436 this->GetHash().ToString().c_str());
437 address = " unknown ";
440 // Don't report 'change' txouts
441 if (nDebit > 0 && pwallet->IsChange(txout))
445 listSent.push_back(make_pair(address, txout.nValue));
447 if (pwallet->IsMine(txout))
448 listReceived.push_back(make_pair(address, txout.nValue));
453 void CWalletTx::GetAccountAmounts(const string& strAccount, int64& nGenerated, int64& nReceived,
454 int64& nSent, int64& nFee) const
456 nGenerated = nReceived = nSent = nFee = 0;
458 int64 allGeneratedImmature, allGeneratedMature, allFee;
459 allGeneratedImmature = allGeneratedMature = allFee = 0;
460 string strSentAccount;
461 list<pair<CBitcoinAddress, int64> > listReceived;
462 list<pair<CBitcoinAddress, int64> > listSent;
463 GetAmounts(allGeneratedImmature, allGeneratedMature, listReceived, listSent, allFee, strSentAccount);
465 if (strAccount == "")
466 nGenerated = allGeneratedMature;
467 if (strAccount == strSentAccount)
469 BOOST_FOREACH(const PAIRTYPE(CBitcoinAddress,int64)& s, listSent)
473 CRITICAL_BLOCK(pwallet->cs_wallet)
475 BOOST_FOREACH(const PAIRTYPE(CBitcoinAddress,int64)& r, listReceived)
477 if (pwallet->mapAddressBook.count(r.first))
479 map<CBitcoinAddress, string>::const_iterator mi = pwallet->mapAddressBook.find(r.first);
480 if (mi != pwallet->mapAddressBook.end() && (*mi).second == strAccount)
481 nReceived += r.second;
483 else if (strAccount.empty())
485 nReceived += r.second;
491 void CWalletTx::AddSupportingTransactions(CTxDB& txdb)
495 const int COPY_DEPTH = 3;
496 if (SetMerkleBranch() < COPY_DEPTH)
498 vector<uint256> vWorkQueue;
499 BOOST_FOREACH(const CTxIn& txin, vin)
500 vWorkQueue.push_back(txin.prevout.hash);
502 // This critsect is OK because txdb is already open
503 CRITICAL_BLOCK(pwallet->cs_wallet)
505 map<uint256, const CMerkleTx*> mapWalletPrev;
506 set<uint256> setAlreadyDone;
507 for (int i = 0; i < vWorkQueue.size(); i++)
509 uint256 hash = vWorkQueue[i];
510 if (setAlreadyDone.count(hash))
512 setAlreadyDone.insert(hash);
515 map<uint256, CWalletTx>::const_iterator mi = pwallet->mapWallet.find(hash);
516 if (mi != pwallet->mapWallet.end())
519 BOOST_FOREACH(const CMerkleTx& txWalletPrev, (*mi).second.vtxPrev)
520 mapWalletPrev[txWalletPrev.GetHash()] = &txWalletPrev;
522 else if (mapWalletPrev.count(hash))
524 tx = *mapWalletPrev[hash];
526 else if (!fClient && txdb.ReadDiskTx(hash, tx))
532 printf("ERROR: AddSupportingTransactions() : unsupported transaction\n");
536 int nDepth = tx.SetMerkleBranch();
537 vtxPrev.push_back(tx);
539 if (nDepth < COPY_DEPTH)
540 BOOST_FOREACH(const CTxIn& txin, tx.vin)
541 vWorkQueue.push_back(txin.prevout.hash);
546 reverse(vtxPrev.begin(), vtxPrev.end());
549 bool CWalletTx::WriteToDisk()
551 return CWalletDB(pwallet->strWalletFile).WriteTx(GetHash(), *this);
554 int CWallet::ScanForWalletTransactions(CBlockIndex* pindexStart, bool fUpdate)
558 CBlockIndex* pindex = pindexStart;
559 CRITICAL_BLOCK(cs_wallet)
564 block.ReadFromDisk(pindex, true);
565 BOOST_FOREACH(CTransaction& tx, block.vtx)
567 if (AddToWalletIfInvolvingMe(tx, &block, fUpdate))
570 pindex = pindex->pnext;
576 void CWallet::ReacceptWalletTransactions()
580 while (fRepeat) CRITICAL_BLOCK(cs_wallet)
583 vector<CDiskTxPos> vMissingTx;
584 BOOST_FOREACH(PAIRTYPE(const uint256, CWalletTx)& item, mapWallet)
586 CWalletTx& wtx = item.second;
587 if (wtx.IsCoinBase() && wtx.IsSpent(0))
591 bool fUpdated = false;
592 if (txdb.ReadTxIndex(wtx.GetHash(), txindex))
594 // Update fSpent if a tx got spent somewhere else by a copy of wallet.dat
595 if (txindex.vSpent.size() != wtx.vout.size())
597 printf("ERROR: ReacceptWalletTransactions() : txindex.vSpent.size() %d != wtx.vout.size() %d\n", txindex.vSpent.size(), wtx.vout.size());
600 for (int i = 0; i < txindex.vSpent.size(); i++)
604 if (!txindex.vSpent[i].IsNull() && IsMine(wtx.vout[i]))
608 vMissingTx.push_back(txindex.vSpent[i]);
613 printf("ReacceptWalletTransactions found spent coin %sbc %s\n", FormatMoney(wtx.GetCredit()).c_str(), wtx.GetHash().ToString().c_str());
620 // Reaccept any txes of ours that aren't already in a block
621 if (!wtx.IsCoinBase())
622 wtx.AcceptWalletTransaction(txdb, false);
625 if (!vMissingTx.empty())
627 // TODO: optimize this to scan just part of the block chain?
628 if (ScanForWalletTransactions(pindexGenesisBlock))
629 fRepeat = true; // Found missing transactions: re-do Reaccept.
634 void CWalletTx::RelayWalletTransaction(CTxDB& txdb)
636 BOOST_FOREACH(const CMerkleTx& tx, vtxPrev)
638 if (!tx.IsCoinBase())
640 uint256 hash = tx.GetHash();
641 if (!txdb.ContainsTx(hash))
642 RelayMessage(CInv(MSG_TX, hash), (CTransaction)tx);
647 uint256 hash = GetHash();
648 if (!txdb.ContainsTx(hash))
650 printf("Relaying wtx %s\n", hash.ToString().substr(0,10).c_str());
651 RelayMessage(CInv(MSG_TX, hash), (CTransaction)*this);
656 void CWalletTx::RelayWalletTransaction()
659 RelayWalletTransaction(txdb);
662 void CWallet::ResendWalletTransactions()
664 // Do this infrequently and randomly to avoid giving away
665 // that these are our transactions.
666 static int64 nNextTime;
667 if (GetTime() < nNextTime)
669 bool fFirst = (nNextTime == 0);
670 nNextTime = GetTime() + GetRand(30 * 60);
674 // Only do it if there's been a new block since last time
675 static int64 nLastTime;
676 if (nTimeBestReceived < nLastTime)
678 nLastTime = GetTime();
680 // Rebroadcast any of our txes that aren't in a block yet
681 printf("ResendWalletTransactions()\n");
683 CRITICAL_BLOCK(cs_wallet)
685 // Sort them in chronological order
686 multimap<unsigned int, CWalletTx*> mapSorted;
687 BOOST_FOREACH(PAIRTYPE(const uint256, CWalletTx)& item, mapWallet)
689 CWalletTx& wtx = item.second;
690 // Don't rebroadcast until it's had plenty of time that
691 // it should have gotten in already by now.
692 if (nTimeBestReceived - (int64)wtx.nTimeReceived > 5 * 60)
693 mapSorted.insert(make_pair(wtx.nTimeReceived, &wtx));
695 BOOST_FOREACH(PAIRTYPE(const unsigned int, CWalletTx*)& item, mapSorted)
697 CWalletTx& wtx = *item.second;
698 wtx.RelayWalletTransaction(txdb);
708 //////////////////////////////////////////////////////////////////////////////
714 int64 CWallet::GetBalance() const
717 CRITICAL_BLOCK(cs_wallet)
719 for (map<uint256, CWalletTx>::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
721 const CWalletTx* pcoin = &(*it).second;
722 if (!pcoin->IsFinal() || !pcoin->IsConfirmed())
724 nTotal += pcoin->GetAvailableCredit();
732 bool CWallet::SelectCoinsMinConf(int64 nTargetValue, int nConfMine, int nConfTheirs, set<pair<const CWalletTx*,unsigned int> >& setCoinsRet, int64& nValueRet) const
737 // List of values less than target
738 pair<int64, pair<const CWalletTx*,unsigned int> > coinLowestLarger;
739 coinLowestLarger.first = INT64_MAX;
740 coinLowestLarger.second.first = NULL;
741 vector<pair<int64, pair<const CWalletTx*,unsigned int> > > vValue;
742 int64 nTotalLower = 0;
744 CRITICAL_BLOCK(cs_wallet)
746 vector<const CWalletTx*> vCoins;
747 vCoins.reserve(mapWallet.size());
748 for (map<uint256, CWalletTx>::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
749 vCoins.push_back(&(*it).second);
750 random_shuffle(vCoins.begin(), vCoins.end(), GetRandInt);
752 BOOST_FOREACH(const CWalletTx* pcoin, vCoins)
754 if (!pcoin->IsFinal() || !pcoin->IsConfirmed())
757 if (pcoin->IsCoinBase() && pcoin->GetBlocksToMaturity() > 0)
760 int nDepth = pcoin->GetDepthInMainChain();
761 if (nDepth < (pcoin->IsFromMe() ? nConfMine : nConfTheirs))
764 for (int i = 0; i < pcoin->vout.size(); i++)
766 if (pcoin->IsSpent(i) || !IsMine(pcoin->vout[i]))
769 int64 n = pcoin->vout[i].nValue;
774 pair<int64,pair<const CWalletTx*,unsigned int> > coin = make_pair(n,make_pair(pcoin,i));
776 if (n == nTargetValue)
778 setCoinsRet.insert(coin.second);
779 nValueRet += coin.first;
782 else if (n < nTargetValue + CENT)
784 vValue.push_back(coin);
787 else if (n < coinLowestLarger.first)
789 coinLowestLarger = coin;
795 if (nTotalLower == nTargetValue || nTotalLower == nTargetValue + CENT)
797 for (int i = 0; i < vValue.size(); ++i)
799 setCoinsRet.insert(vValue[i].second);
800 nValueRet += vValue[i].first;
805 if (nTotalLower < nTargetValue + (coinLowestLarger.second.first ? CENT : 0))
807 if (coinLowestLarger.second.first == NULL)
809 setCoinsRet.insert(coinLowestLarger.second);
810 nValueRet += coinLowestLarger.first;
814 if (nTotalLower >= nTargetValue + CENT)
815 nTargetValue += CENT;
817 // Solve subset sum by stochastic approximation
818 sort(vValue.rbegin(), vValue.rend());
819 vector<char> vfIncluded;
820 vector<char> vfBest(vValue.size(), true);
821 int64 nBest = nTotalLower;
823 for (int nRep = 0; nRep < 1000 && nBest != nTargetValue; nRep++)
825 vfIncluded.assign(vValue.size(), false);
827 bool fReachedTarget = false;
828 for (int nPass = 0; nPass < 2 && !fReachedTarget; nPass++)
830 for (int i = 0; i < vValue.size(); i++)
832 if (nPass == 0 ? rand() % 2 : !vfIncluded[i])
834 nTotal += vValue[i].first;
835 vfIncluded[i] = true;
836 if (nTotal >= nTargetValue)
838 fReachedTarget = true;
844 nTotal -= vValue[i].first;
845 vfIncluded[i] = false;
852 // If the next larger is still closer, return it
853 if (coinLowestLarger.second.first && coinLowestLarger.first - nTargetValue <= nBest - nTargetValue)
855 setCoinsRet.insert(coinLowestLarger.second);
856 nValueRet += coinLowestLarger.first;
859 for (int i = 0; i < vValue.size(); i++)
862 setCoinsRet.insert(vValue[i].second);
863 nValueRet += vValue[i].first;
867 printf("SelectCoins() best subset: ");
868 for (int i = 0; i < vValue.size(); i++)
870 printf("%s ", FormatMoney(vValue[i].first).c_str());
871 printf("total %s\n", FormatMoney(nBest).c_str());
877 bool CWallet::SelectCoins(int64 nTargetValue, set<pair<const CWalletTx*,unsigned int> >& setCoinsRet, int64& nValueRet) const
879 return (SelectCoinsMinConf(nTargetValue, 1, 6, setCoinsRet, nValueRet) ||
880 SelectCoinsMinConf(nTargetValue, 1, 1, setCoinsRet, nValueRet) ||
881 SelectCoinsMinConf(nTargetValue, 0, 1, setCoinsRet, nValueRet));
887 bool CWallet::CreateTransaction(const vector<pair<CScript, int64> >& vecSend, CWalletTx& wtxNew, CReserveKey& reservekey, int64& nFeeRet)
890 BOOST_FOREACH (const PAIRTYPE(CScript, int64)& s, vecSend)
896 if (vecSend.empty() || nValue < 0)
899 wtxNew.pwallet = this;
901 CRITICAL_BLOCK(cs_main)
902 CRITICAL_BLOCK(cs_wallet)
904 // txdb must be opened before the mapWallet lock
907 nFeeRet = nTransactionFee;
912 wtxNew.fFromMe = true;
914 int64 nTotalValue = nValue + nFeeRet;
915 double dPriority = 0;
916 // vouts to the payees
917 BOOST_FOREACH (const PAIRTYPE(CScript, int64)& s, vecSend)
918 wtxNew.vout.push_back(CTxOut(s.second, s.first));
920 // Choose coins to use
921 set<pair<const CWalletTx*,unsigned int> > setCoins;
923 if (!SelectCoins(nTotalValue, setCoins, nValueIn))
925 BOOST_FOREACH(PAIRTYPE(const CWalletTx*, unsigned int) pcoin, setCoins)
927 int64 nCredit = pcoin.first->vout[pcoin.second].nValue;
928 dPriority += (double)nCredit * pcoin.first->GetDepthInMainChain();
931 int64 nChange = nValueIn - nValue - nFeeRet;
932 // if sub-cent change is required, the fee must be raised to at least MIN_TX_FEE
933 // or until nChange becomes zero
934 if (nFeeRet < MIN_TX_FEE && nChange > 0 && nChange < CENT)
936 int64 nMoveToFee = min(nChange, MIN_TX_FEE - nFeeRet);
937 nChange -= nMoveToFee;
938 nFeeRet += nMoveToFee;
943 // Note: We use a new key here to keep it from being obvious which side is the change.
944 // The drawback is that by not reusing a previous key, the change may be lost if a
945 // backup is restored, if the backup doesn't have the new private key for the change.
946 // If we reused the old key, it would be possible to add code to look for and
947 // rediscover unknown transactions that were written with keys of ours to recover
948 // post-backup change.
950 // Reserve a new key pair from key pool
951 vector<unsigned char> vchPubKey = reservekey.GetReservedKey();
952 // assert(mapKeys.count(vchPubKey));
954 // Fill a vout to ourself, using same address type as the payment
955 CScript scriptChange;
956 if (vecSend[0].first.GetBitcoinAddress().IsValid())
957 scriptChange.SetBitcoinAddress(vchPubKey);
959 scriptChange << vchPubKey << OP_CHECKSIG;
961 // Insert change txn at random position:
962 vector<CTxOut>::iterator position = wtxNew.vout.begin()+GetRandInt(wtxNew.vout.size());
963 wtxNew.vout.insert(position, CTxOut(nChange, scriptChange));
966 reservekey.ReturnKey();
969 BOOST_FOREACH(const PAIRTYPE(const CWalletTx*,unsigned int)& coin, setCoins)
970 wtxNew.vin.push_back(CTxIn(coin.first->GetHash(),coin.second));
974 BOOST_FOREACH(const PAIRTYPE(const CWalletTx*,unsigned int)& coin, setCoins)
975 if (!SignSignature(*this, *coin.first, wtxNew, nIn++))
979 unsigned int nBytes = ::GetSerializeSize(*(CTransaction*)&wtxNew, SER_NETWORK);
980 if (nBytes >= MAX_BLOCK_SIZE_GEN/5)
984 // Check that enough fee is included
985 int64 nPayFee = nTransactionFee * (1 + (int64)nBytes / 1000);
986 bool fAllowFree = CTransaction::AllowFree(dPriority);
987 int64 nMinFee = wtxNew.GetMinFee(1, fAllowFree);
988 if (nFeeRet < max(nPayFee, nMinFee))
990 nFeeRet = max(nPayFee, nMinFee);
994 // Fill vtxPrev by copying from previous transactions vtxPrev
995 wtxNew.AddSupportingTransactions(txdb);
996 wtxNew.fTimeReceivedIsTxTime = true;
1005 bool CWallet::CreateTransaction(CScript scriptPubKey, int64 nValue, CWalletTx& wtxNew, CReserveKey& reservekey, int64& nFeeRet)
1007 vector< pair<CScript, int64> > vecSend;
1008 vecSend.push_back(make_pair(scriptPubKey, nValue));
1009 return CreateTransaction(vecSend, wtxNew, reservekey, nFeeRet);
1012 // Call after CreateTransaction unless you want to abort
1013 bool CWallet::CommitTransaction(CWalletTx& wtxNew, CReserveKey& reservekey)
1015 CRITICAL_BLOCK(cs_main)
1016 CRITICAL_BLOCK(cs_wallet)
1018 printf("CommitTransaction:\n%s", wtxNew.ToString().c_str());
1020 // This is only to keep the database open to defeat the auto-flush for the
1021 // duration of this scope. This is the only place where this optimization
1022 // maybe makes sense; please don't do it anywhere else.
1023 CWalletDB* pwalletdb = fFileBacked ? new CWalletDB(strWalletFile,"r") : NULL;
1025 // Take key pair from key pool so it won't be used again
1026 reservekey.KeepKey();
1028 // Add tx to wallet, because if it has change it's also ours,
1029 // otherwise just for transaction history.
1030 AddToWallet(wtxNew);
1032 // Mark old coins as spent
1033 set<CWalletTx*> setCoins;
1034 BOOST_FOREACH(const CTxIn& txin, wtxNew.vin)
1036 CWalletTx &coin = mapWallet[txin.prevout.hash];
1037 coin.pwallet = this;
1038 coin.MarkSpent(txin.prevout.n);
1040 vWalletUpdated.push_back(coin.GetHash());
1047 // Track how many getdata requests our transaction gets
1048 mapRequestCount[wtxNew.GetHash()] = 0;
1051 if (!wtxNew.AcceptToMemoryPool())
1053 // This must not fail. The transaction has already been signed and recorded.
1054 printf("CommitTransaction() : Error: Transaction not valid");
1057 wtxNew.RelayWalletTransaction();
1066 string CWallet::SendMoney(CScript scriptPubKey, int64 nValue, CWalletTx& wtxNew, bool fAskFee)
1068 CReserveKey reservekey(this);
1073 string strError = _("Error: Wallet locked, unable to create transaction ");
1074 printf("SendMoney() : %s", strError.c_str());
1077 if (!CreateTransaction(scriptPubKey, nValue, wtxNew, reservekey, nFeeRequired))
1080 if (nValue + nFeeRequired > GetBalance())
1081 strError = strprintf(_("Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds "), FormatMoney(nFeeRequired).c_str());
1083 strError = _("Error: Transaction creation failed ");
1084 printf("SendMoney() : %s", strError.c_str());
1088 if (fAskFee && !ThreadSafeAskFee(nFeeRequired, _("Sending..."), NULL))
1091 if (!CommitTransaction(wtxNew, reservekey))
1092 return _("Error: The transaction was rejected. This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here.");
1100 string CWallet::SendMoneyToBitcoinAddress(const CBitcoinAddress& address, int64 nValue, CWalletTx& wtxNew, bool fAskFee)
1104 return _("Invalid amount");
1105 if (nValue + nTransactionFee > GetBalance())
1106 return _("Insufficient funds");
1108 // Parse bitcoin address
1109 CScript scriptPubKey;
1110 scriptPubKey.SetBitcoinAddress(address);
1112 return SendMoney(scriptPubKey, nValue, wtxNew, fAskFee);
1118 int CWallet::LoadWallet(bool& fFirstRunRet)
1122 fFirstRunRet = false;
1123 int nLoadWalletRet = CWalletDB(strWalletFile,"cr+").LoadWallet(this);
1124 if (nLoadWalletRet != DB_LOAD_OK)
1125 return nLoadWalletRet;
1126 fFirstRunRet = vchDefaultKey.empty();
1128 if (!HaveKey(Hash160(vchDefaultKey)))
1130 // Create new keyUser and set as default key
1131 RandAddSeedPerfmon();
1133 std::vector<unsigned char> newDefaultKey;
1134 if (!GetKeyFromPool(newDefaultKey, false))
1135 return DB_LOAD_FAIL;
1136 SetDefaultKey(newDefaultKey);
1137 if (!SetAddressBookName(CBitcoinAddress(vchDefaultKey), ""))
1138 return DB_LOAD_FAIL;
1141 CreateThread(ThreadFlushWalletDB, &strWalletFile);
1146 bool CWallet::SetAddressBookName(const CBitcoinAddress& address, const string& strName)
1148 mapAddressBook[address] = strName;
1151 return CWalletDB(strWalletFile).WriteName(address.ToString(), strName);
1154 bool CWallet::DelAddressBookName(const CBitcoinAddress& address)
1156 mapAddressBook.erase(address);
1159 return CWalletDB(strWalletFile).EraseName(address.ToString());
1163 void CWallet::PrintWallet(const CBlock& block)
1165 CRITICAL_BLOCK(cs_wallet)
1167 if (mapWallet.count(block.vtx[0].GetHash()))
1169 CWalletTx& wtx = mapWallet[block.vtx[0].GetHash()];
1170 printf(" mine: %d %d %d", wtx.GetDepthInMainChain(), wtx.GetBlocksToMaturity(), wtx.GetCredit());
1176 bool CWallet::GetTransaction(const uint256 &hashTx, CWalletTx& wtx)
1178 CRITICAL_BLOCK(cs_wallet)
1180 map<uint256, CWalletTx>::iterator mi = mapWallet.find(hashTx);
1181 if (mi != mapWallet.end())
1190 bool CWallet::SetDefaultKey(const std::vector<unsigned char> &vchPubKey)
1194 if (!CWalletDB(strWalletFile).WriteDefaultKey(vchPubKey))
1197 vchDefaultKey = vchPubKey;
1201 bool GetWalletFile(CWallet* pwallet, string &strWalletFileOut)
1203 if (!pwallet->fFileBacked)
1205 strWalletFileOut = pwallet->strWalletFile;
1209 bool CWallet::TopUpKeyPool()
1211 CRITICAL_BLOCK(cs_wallet)
1216 CWalletDB walletdb(strWalletFile);
1219 int64 nTargetSize = max(GetArg("-keypool", 100), (int64)0);
1220 while (setKeyPool.size() < nTargetSize+1)
1223 if (!setKeyPool.empty())
1224 nEnd = *(--setKeyPool.end()) + 1;
1225 if (!walletdb.WritePool(nEnd, CKeyPool(GenerateNewKey())))
1226 throw runtime_error("TopUpKeyPool() : writing generated key failed");
1227 setKeyPool.insert(nEnd);
1228 printf("keypool added key %"PRI64d", size=%d\n", nEnd, setKeyPool.size());
1234 void CWallet::ReserveKeyFromKeyPool(int64& nIndex, CKeyPool& keypool)
1237 keypool.vchPubKey.clear();
1238 CRITICAL_BLOCK(cs_wallet)
1243 // Get the oldest key
1244 if(setKeyPool.empty())
1247 CWalletDB walletdb(strWalletFile);
1249 nIndex = *(setKeyPool.begin());
1250 setKeyPool.erase(setKeyPool.begin());
1251 if (!walletdb.ReadPool(nIndex, keypool))
1252 throw runtime_error("ReserveKeyFromKeyPool() : read failed");
1253 if (!HaveKey(Hash160(keypool.vchPubKey)))
1254 throw runtime_error("ReserveKeyFromKeyPool() : unknown key in key pool");
1255 assert(!keypool.vchPubKey.empty());
1256 printf("keypool reserve %"PRI64d"\n", nIndex);
1260 void CWallet::KeepKey(int64 nIndex)
1262 // Remove from key pool
1265 CWalletDB walletdb(strWalletFile);
1266 walletdb.ErasePool(nIndex);
1268 printf("keypool keep %"PRI64d"\n", nIndex);
1271 void CWallet::ReturnKey(int64 nIndex)
1273 // Return to key pool
1274 CRITICAL_BLOCK(cs_wallet)
1275 setKeyPool.insert(nIndex);
1276 printf("keypool return %"PRI64d"\n", nIndex);
1279 bool CWallet::GetKeyFromPool(vector<unsigned char>& result, bool fAllowReuse)
1283 CRITICAL_BLOCK(cs_wallet)
1285 ReserveKeyFromKeyPool(nIndex, keypool);
1288 if (fAllowReuse && !vchDefaultKey.empty())
1290 result = vchDefaultKey;
1293 if (IsLocked()) return false;
1294 result = GenerateNewKey();
1298 result = keypool.vchPubKey;
1303 int64 CWallet::GetOldestKeyPoolTime()
1307 ReserveKeyFromKeyPool(nIndex, keypool);
1311 return keypool.nTime;
1314 vector<unsigned char> CReserveKey::GetReservedKey()
1319 pwallet->ReserveKeyFromKeyPool(nIndex, keypool);
1321 vchPubKey = keypool.vchPubKey;
1324 printf("CReserveKey::GetReservedKey(): Warning: using default key instead of a new key, top up your keypool.");
1325 vchPubKey = pwallet->vchDefaultKey;
1328 assert(!vchPubKey.empty());
1332 void CReserveKey::KeepKey()
1335 pwallet->KeepKey(nIndex);
1340 void CReserveKey::ReturnKey()
1343 pwallet->ReturnKey(nIndex);