BN_zero -> BN_set_word
[novacoin.git] / src / wallet.h
1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2012 The Bitcoin developers
3 // Distributed under the MIT/X11 software license, see the accompanying
4 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 #ifndef BITCOIN_WALLET_H
6 #define BITCOIN_WALLET_H
7
8 #include <string>
9 #include <vector>
10
11 #include <stdlib.h>
12
13 #include "main.h"
14 #include "key.h"
15 #include "keystore.h"
16 #include "script.h"
17 #include "ui_interface.h"
18 #include "util.h"
19 #include "walletdb.h"
20 #include "base58.h"
21
22 extern unsigned int nStakeMaxAge;
23 extern bool fWalletUnlockMintOnly;
24 extern bool fConfChange;
25 class CAccountingEntry;
26 class CWalletTx;
27 class CReserveKey;
28 class COutput;
29 class CCoinControl;
30
31 // Set of selected transactions
32 typedef std::set<std::pair<const CWalletTx*,unsigned int> > CoinsSet;
33
34 /** (client) version numbers for particular wallet features */
35 enum WalletFeature
36 {
37     FEATURE_BASE = 10500, // the earliest version new wallets supports (only useful for getinfo's clientversion output)
38
39     FEATURE_WALLETCRYPT = 40000, // wallet encryption
40     FEATURE_COMPRPUBKEY = 60000, // compressed public keys
41     FEATURE_MALLKEY = 60017,
42     FEATURE_LATEST = 60017
43 };
44
45 /** A key pool entry */
46 class CKeyPool
47 {
48 public:
49     int64_t nTime;
50     CPubKey vchPubKey;
51
52     CKeyPool()
53     {
54         nTime = GetTime();
55     }
56
57     CKeyPool(const CPubKey& vchPubKeyIn)
58     {
59         nTime = GetTime();
60         vchPubKey = vchPubKeyIn;
61     }
62
63     IMPLEMENT_SERIALIZE
64     (
65         if (!(nType & SER_GETHASH))
66             READWRITE(nVersion);
67         READWRITE(nTime);
68         READWRITE(vchPubKey);
69     )
70 };
71
72 /** A CWallet is an extension of a keystore, which also maintains a set of transactions and balances,
73  * and provides the ability to create new transactions.
74  */
75 class CWallet : public CCryptoKeyStore
76 {
77 private:
78     bool SelectCoins(int64_t nTargetValue, unsigned int nSpendTime, std::set<std::pair<const CWalletTx*,unsigned int> >& setCoinsRet, int64_t& nValueRet, const CCoinControl *coinControl=NULL) const;
79
80     CWalletDB *pwalletdbEncryption, *pwalletdbDecryption;
81
82     // the current wallet version: clients below this version are not able to load the wallet
83     int nWalletVersion;
84
85     // the maximum wallet format version: memory-only variable that specifies to what version this wallet may be upgraded
86     int nWalletMaxVersion;
87
88     int64_t nNextResend;
89     int64_t nLastResend;
90
91     // stake mining statistics
92     uint64_t nKernelsTried;
93     uint64_t nCoinDaysTried;
94
95 public:
96     mutable CCriticalSection cs_wallet;
97
98     bool fFileBacked;
99     std::string strWalletFile;
100
101     std::set<int64_t> setKeyPool;
102     /*
103     std::map<CKeyID, CKeyMetadata> mapKeyMetadata;
104     std::map<CMalleableKeyView, CKeyMetadata> mapMalleableKeyMetadata;
105     */
106
107     std::map<CBitcoinAddress, CKeyMetadata> mapKeyMetadata;
108
109     typedef std::map<unsigned int, CMasterKey> MasterKeyMap;
110     MasterKeyMap mapMasterKeys;
111     unsigned int nMasterKeyMaxID;
112
113     CWallet()
114     {
115         SetNull();
116     }
117     CWallet(std::string strWalletFileIn)
118     {
119         SetNull();
120
121         strWalletFile = strWalletFileIn;
122         fFileBacked = true;
123     }
124     void SetNull()
125     {
126         nWalletVersion = FEATURE_BASE;
127         nWalletMaxVersion = FEATURE_BASE;
128         fFileBacked = false;
129         nMasterKeyMaxID = 0;
130         pwalletdbEncryption = NULL;
131         pwalletdbDecryption = NULL;
132         nNextResend = 0;
133         nLastResend = 0;
134         nOrderPosNext = 0;
135         nKernelsTried = 0;
136         nCoinDaysTried = 0;
137         nTimeFirstKey = 0;
138     }
139
140     std::map<uint256, CWalletTx> mapWallet;
141     std::vector<uint256> vMintingWalletUpdated;
142     int64_t nOrderPosNext;
143     std::map<uint256, int> mapRequestCount;
144
145     std::map<CBitcoinAddress, std::string> mapAddressBook;
146
147     CPubKey vchDefaultKey;
148     int64_t nTimeFirstKey;
149
150     const CWalletTx* GetWalletTx(const uint256& hash) const;
151
152     // check whether we are allowed to upgrade (or already support) to the named feature
153     bool CanSupportFeature(enum WalletFeature wf) { return nWalletMaxVersion >= wf; }
154
155     void AvailableCoinsMinConf(std::vector<COutput>& vCoins, int nConf, int64_t nMinValue, int64_t nMaxValue) const;
156     void AvailableCoins(std::vector<COutput>& vCoins, bool fOnlyConfirmed=true, const CCoinControl *coinControl=NULL) const;
157     bool SelectCoinsMinConf(int64_t nTargetValue, unsigned int nSpendTime, int nConfMine, int nConfTheirs, std::vector<COutput> vCoins, std::set<std::pair<const CWalletTx*,unsigned int> >& setCoinsRet, int64_t& nValueRet) const;
158
159     // Simple select (without randomization)
160     bool SelectCoinsSimple(int64_t nTargetValue, int64_t nMinValue, int64_t nMaxValue, unsigned int nSpendTime, int nMinConf, std::set<std::pair<const CWalletTx*,unsigned int> >& setCoinsRet, int64_t& nValueRet) const;
161
162     // keystore implementation
163     // Generate a new key
164     CPubKey GenerateNewKey();
165     CMalleableKeyView GenerateNewMalleableKey();
166     // Adds a key to the store, and saves it to disk.
167     bool AddKey(const CKey& key);
168     bool AddKey(const CMalleableKey& mKey);
169     // Adds a key to the store, without saving it to disk (used by LoadWallet)
170     bool LoadKey(const CKey& key) { return CCryptoKeyStore::AddKey(key); }
171     // Load metadata (used by LoadWallet)
172     bool LoadKeyMetadata(const CPubKey &pubkey, const CKeyMetadata &metadata);
173     bool LoadKeyMetadata(const CMalleableKeyView &keyView, const CKeyMetadata &metadata);
174
175     // Load malleable key without saving it to disk (used by LoadWallet)
176     bool LoadKey(const CMalleableKeyView &keyView, const CSecret &vchSecretH) { return CCryptoKeyStore::AddMalleableKey(keyView, vchSecretH); }
177     bool LoadCryptedKey(const CMalleableKeyView &keyView, const std::vector<unsigned char> &vchCryptedSecretH) { return CCryptoKeyStore::AddCryptedMalleableKey(keyView, vchCryptedSecretH); }
178
179     bool LoadMinVersion(int nVersion) { nWalletVersion = nVersion; nWalletMaxVersion = std::max(nWalletMaxVersion, nVersion); return true; }
180
181     // Adds an encrypted key to the store, and saves it to disk.
182     bool AddCryptedKey(const CPubKey &vchPubKey, const std::vector<unsigned char> &vchCryptedSecret);
183     bool AddCryptedMalleableKey(const CMalleableKeyView& keyView, const std::vector<unsigned char> &vchCryptedSecretH);
184     // Adds an encrypted key to the store, without saving it to disk (used by LoadWallet)
185     bool LoadCryptedKey(const CPubKey &vchPubKey, const std::vector<unsigned char> &vchCryptedSecret) { SetMinVersion(FEATURE_WALLETCRYPT); return CCryptoKeyStore::AddCryptedKey(vchPubKey, vchCryptedSecret); }
186     bool AddCScript(const CScript& redeemScript);
187     bool LoadCScript(const CScript& redeemScript);
188
189     // Adds a watch-only address to the store, and saves it to disk.
190     bool AddWatchOnly(const CScript &dest);
191     bool RemoveWatchOnly(const CScript &dest);
192     // Adds a watch-only address to the store, without saving it to disk (used by LoadWallet)
193     bool LoadWatchOnly(const CScript &dest);
194
195     bool Unlock(const SecureString& strWalletPassphrase);
196     bool ChangeWalletPassphrase(const SecureString& strOldWalletPassphrase, const SecureString& strNewWalletPassphrase);
197     bool EncryptWallet(const SecureString& strWalletPassphrase);
198     bool DecryptWallet(const SecureString& strWalletPassphrase);
199
200     void GetAddresses(std::map<CBitcoinAddress, int64_t> &mapAddresses) const;
201
202
203     /** Increment the next transaction order id
204         @return next transaction order id
205      */
206     int64_t IncOrderPosNext(CWalletDB *pwalletdb = NULL);
207
208     typedef std::pair<CWalletTx*, CAccountingEntry*> TxPair;
209     typedef std::multimap<int64_t, TxPair > TxItems;
210
211     /** Get the wallet's activity log
212         @return multimap of ordered transactions and accounting entries
213         @warning Returned pointers are *only* valid within the scope of passed acentries
214      */
215     TxItems OrderedTxItems(std::list<CAccountingEntry>& acentries, std::string strAccount = "");
216
217     void MarkDirty();
218     bool AddToWallet(const CWalletTx& wtxIn);
219     bool AddToWalletIfInvolvingMe(const CTransaction& tx, const CBlock* pblock, bool fUpdate = false);
220     bool EraseFromWallet(uint256 hash);
221     void ClearOrphans();
222     void WalletUpdateSpent(const CTransaction& prevout, bool fBlock = false);
223     int ScanForWalletTransactions(CBlockIndex* pindexStart, bool fUpdate = false);
224     int ScanForWalletTransaction(const uint256& hashTx);
225     void ReacceptWalletTransactions();
226     void ResendWalletTransactions(int64_t nBestBlockTime);
227     std::vector<uint256> ResendWalletTransactionsBefore(int64_t nTime);
228     int64_t GetBalance() const;
229     int64_t GetWatchOnlyBalance() const;
230     int64_t GetUnconfirmedBalance() const;
231     int64_t GetUnconfirmedWatchOnlyBalance() const;
232     int64_t GetImmatureBalance() const;
233     int64_t GetImmatureWatchOnlyBalance() const;
234     int64_t GetStake() const;
235     int64_t GetNewMint() const;
236     int64_t GetWatchOnlyStake() const;
237     int64_t GetWatchOnlyNewMint() const;
238     bool CreateTransaction(const std::vector<std::pair<CScript, int64_t> >& vecSend, CWalletTx& wtxNew, CReserveKey& reservekey, int64_t& nFeeRet, const CCoinControl *coinControl=NULL);
239     bool CreateTransaction(CScript scriptPubKey, int64_t nValue, CWalletTx& wtxNew, CReserveKey& reservekey, int64_t& nFeeRet, const CCoinControl *coinControl=NULL);
240     bool CommitTransaction(CWalletTx& wtxNew, CReserveKey& reservekey);
241
242     void GetStakeWeightFromValue(const int64_t& nTime, const int64_t& nValue, uint64_t& nWeight);
243     bool CreateCoinStake(uint256 &hashTx, uint32_t nOut, uint32_t nTime, uint32_t nBits, CTransaction &txNew, CKey& key);
244     bool MergeCoins(const int64_t& nAmount, const int64_t& nMinValue, const int64_t& nMaxValue, std::list<uint256>& listMerged);
245
246     std::string SendMoney(CScript scriptPubKey, int64_t nValue, CWalletTx& wtxNew, bool fAskFee=false);
247
248     bool NewKeyPool(unsigned int nSize = 0);
249     bool TopUpKeyPool(unsigned int nSize = 0);
250     int64_t AddReserveKey(const CKeyPool& keypool);
251     void ReserveKeyFromKeyPool(int64_t& nIndex, CKeyPool& keypool);
252     void KeepKey(int64_t nIndex);
253     void ReturnKey(int64_t nIndex);
254     bool GetKeyFromPool(CPubKey &key, bool fAllowReuse=true);
255     int64_t GetOldestKeyPoolTime();
256     void GetAllReserveKeys(std::set<CKeyID>& setAddress) const;
257
258     std::set< std::set<CBitcoinAddress> > GetAddressGroupings();
259     std::map<CBitcoinAddress, int64_t> GetAddressBalances();
260
261     isminetype IsMine(const CTxIn& txin) const;
262     int64_t GetDebit(const CTxIn& txin, const isminefilter& filter) const;
263     isminetype IsMine(const CTxOut& txout) const;
264     int64_t GetCredit(const CTxOut& txout, const isminefilter& filter) const;
265     bool IsChange(const CTxOut& txout) const;
266     int64_t GetChange(const CTxOut& txout) const;
267     bool IsMine(const CTransaction& tx) const;
268     bool IsFromMe(const CTransaction& tx) const;
269     int64_t GetDebit(const CTransaction& tx, const isminefilter& filter) const;
270     int64_t GetCredit(const CTransaction& tx, const isminefilter& filter) const;
271     int64_t GetChange(const CTransaction& tx) const;
272     void SetBestChain(const CBlockLocator& loc);
273
274     DBErrors LoadWallet(bool& fFirstRunRet);
275     DBErrors ZapWalletTx();
276
277     bool SetAddressBookName(const CTxDestination& address, const std::string& strName);
278     bool SetAddressBookName(const CBitcoinAddress& address, const std::string& strName);
279     bool DelAddressBookName(const CBitcoinAddress& address);
280     void UpdatedTransaction(const uint256 &hashTx);
281     void PrintWallet(const CBlock& block);
282
283     void Inventory(const uint256 &hash)
284     {
285         {
286             LOCK(cs_wallet);
287             std::map<uint256, int>::iterator mi = mapRequestCount.find(hash);
288             if (mi != mapRequestCount.end())
289                 (*mi).second++;
290         }
291     }
292
293     unsigned int GetKeyPoolSize()
294     {
295         return (unsigned int)(setKeyPool.size());
296     }
297
298     bool GetTransaction(const uint256 &hashTx, CWalletTx& wtx);
299     bool SetDefaultKey(const CPubKey &vchPubKey);
300
301     // signify that a particular wallet feature is now used. this may change nWalletVersion and nWalletMaxVersion if those are lower
302     bool SetMinVersion(enum WalletFeature, CWalletDB* pwalletdbIn = NULL, bool fExplicit = false);
303
304     // change which version we're allowed to upgrade to (note that this does not immediately imply upgrading to that format)
305     bool SetMaxVersion(int nVersion);
306
307     // get the current wallet format (the oldest client version guaranteed to understand this wallet)
308     int GetVersion() { return nWalletVersion; }
309
310     void FixSpentCoins(int& nMismatchSpent, int64_t& nBalanceInQuestion, bool fCheckOnly = false);
311     void DisableTransaction(const CTransaction &tx);
312
313     /** Address book entry changed.
314      * @note called with lock cs_wallet held.
315      */
316     boost::signals2::signal<void (CWallet *wallet, const CBitcoinAddress &address, const std::string &label, bool isMine, ChangeType status)> NotifyAddressBookChanged;
317
318     /** Wallet transaction added, removed or updated.
319      * @note called with lock cs_wallet held.
320      */
321     boost::signals2::signal<void (CWallet *wallet, const uint256 &hashTx, ChangeType status)> NotifyTransactionChanged;
322
323     /** Watch-only address added */
324     boost::signals2::signal<void (bool fHaveWatchOnly)> NotifyWatchonlyChanged;
325 };
326
327 /** A key allocated from the key pool. */
328 class CReserveKey
329 {
330 protected:
331     CWallet* pwallet;
332     int64_t nIndex;
333     CPubKey vchPubKey;
334 public:
335     CReserveKey(CWallet* pwalletIn)
336     {
337         nIndex = -1;
338         pwallet = pwalletIn;
339     }
340
341     ~CReserveKey()
342     {
343         if (!fShutdown)
344             ReturnKey();
345     }
346
347     void ReturnKey();
348     CPubKey GetReservedKey();
349     void KeepKey();
350 };
351
352
353 typedef std::map<std::string, std::string> mapValue_t;
354
355
356 static void ReadOrderPos(int64_t& nOrderPos, mapValue_t& mapValue)
357 {
358     if (!mapValue.count("n"))
359     {
360         nOrderPos = -1; // TODO: calculate elsewhere
361         return;
362     }
363     nOrderPos = atoi64(mapValue["n"].c_str());
364 }
365
366
367 static void WriteOrderPos(const int64_t& nOrderPos, mapValue_t& mapValue)
368 {
369     if (nOrderPos == -1)
370         return;
371     mapValue["n"] = i64tostr(nOrderPos);
372 }
373
374
375 /** A transaction with a bunch of additional info that only the owner cares about.
376  * It includes any unrecorded transactions needed to link it back to the block chain.
377  */
378 class CWalletTx : public CMerkleTx
379 {
380 private:
381     const CWallet* pwallet;
382
383 public:
384     std::vector<CMerkleTx> vtxPrev;
385     mapValue_t mapValue;
386     std::vector<std::pair<std::string, std::string> > vOrderForm;
387     unsigned int fTimeReceivedIsTxTime;
388     unsigned int nTimeReceived;  // time received by this node
389     unsigned int nTimeSmart;
390     char fFromMe;
391     std::string strFromAccount;
392     std::vector<char> vfSpent; // which outputs are already spent
393     int64_t nOrderPos;  // position in ordered transaction list
394
395     // memory only
396     mutable bool fDebitCached;
397     mutable bool fWatchDebitCached;
398     mutable bool fCreditCached;
399     mutable bool fWatchCreditCached;
400     mutable bool fAvailableCreditCached;
401     mutable bool fImmatureCreditCached;
402     mutable bool fImmatureWatchCreditCached;
403     mutable bool fAvailableWatchCreditCached;
404     mutable bool fChangeCached;
405     mutable int64_t nDebitCached;
406     mutable int64_t nWatchDebitCached;
407     mutable int64_t nCreditCached;
408     mutable int64_t nWatchCreditCached;
409     mutable int64_t nAvailableCreditCached;
410     mutable int64_t nImmatureCreditCached;
411     mutable int64_t nImmatureWatchCreditCached;
412     mutable int64_t nAvailableWatchCreditCached;
413     mutable int64_t nChangeCached;
414
415     CWalletTx()
416     {
417         Init(NULL);
418     }
419
420     CWalletTx(const CWallet* pwalletIn)
421     {
422         Init(pwalletIn);
423     }
424
425     CWalletTx(const CWallet* pwalletIn, const CMerkleTx& txIn) : CMerkleTx(txIn)
426     {
427         Init(pwalletIn);
428     }
429
430     CWalletTx(const CWallet* pwalletIn, const CTransaction& txIn) : CMerkleTx(txIn)
431     {
432         Init(pwalletIn);
433     }
434
435     void Init(const CWallet* pwalletIn)
436     {
437         pwallet = pwalletIn;
438         vtxPrev.clear();
439         mapValue.clear();
440         vOrderForm.clear();
441         fTimeReceivedIsTxTime = false;
442         nTimeReceived = 0;
443         nTimeSmart = 0;
444         fFromMe = false;
445         strFromAccount.clear();
446         vfSpent.clear();
447         fDebitCached = false;
448         fWatchDebitCached = false;
449         fCreditCached = false;
450         fWatchCreditCached = false;
451         fAvailableCreditCached = false;
452         fAvailableWatchCreditCached = false;
453         fImmatureCreditCached = false;
454         fImmatureWatchCreditCached = false;
455         fChangeCached = false;
456         nDebitCached = 0;
457         nWatchDebitCached = 0;
458         nCreditCached = 0;
459         nWatchCreditCached = 0;
460         nAvailableCreditCached = 0;
461         nAvailableWatchCreditCached = 0;
462         nImmatureCreditCached = 0;
463         nImmatureWatchCreditCached = 0;
464         nChangeCached = 0;
465         nOrderPos = -1;
466     }
467
468     IMPLEMENT_SERIALIZE
469     (
470         CWalletTx* pthis = const_cast<CWalletTx*>(this);
471         if (fRead)
472             pthis->Init(NULL);
473         char fSpent = false;
474
475         if (!fRead)
476         {
477             pthis->mapValue["fromaccount"] = pthis->strFromAccount;
478
479             std::string str;
480             BOOST_FOREACH(char f, vfSpent)
481             {
482                 str += (f ? '1' : '0');
483                 if (f)
484                     fSpent = true;
485             }
486             pthis->mapValue["spent"] = str;
487
488             WriteOrderPos(pthis->nOrderPos, pthis->mapValue);
489
490             if (nTimeSmart)
491                 pthis->mapValue["timesmart"] = strprintf("%u", nTimeSmart);
492         }
493
494         nSerSize += SerReadWrite(s, *(CMerkleTx*)this, nType, nVersion,ser_action);
495         READWRITE(vtxPrev);
496         READWRITE(mapValue);
497         READWRITE(vOrderForm);
498         READWRITE(fTimeReceivedIsTxTime);
499         READWRITE(nTimeReceived);
500         READWRITE(fFromMe);
501         READWRITE(fSpent);
502
503         if (fRead)
504         {
505             pthis->strFromAccount = pthis->mapValue["fromaccount"];
506
507             if (mapValue.count("spent"))
508                 BOOST_FOREACH(char c, pthis->mapValue["spent"])
509                     pthis->vfSpent.push_back(c != '0');
510             else
511                 pthis->vfSpent.assign(vout.size(), fSpent);
512
513             ReadOrderPos(pthis->nOrderPos, pthis->mapValue);
514
515             pthis->nTimeSmart = mapValue.count("timesmart") ? (unsigned int)atoi64(pthis->mapValue["timesmart"]) : 0;
516         }
517
518         pthis->mapValue.erase("fromaccount");
519         pthis->mapValue.erase("version");
520         pthis->mapValue.erase("spent");
521         pthis->mapValue.erase("n");
522         pthis->mapValue.erase("timesmart");
523     )
524
525     // marks certain txout's as spent
526     // returns true if any update took place
527     bool UpdateSpent(const std::vector<char>& vfNewSpent);
528
529     // make sure balances are recalculated
530     void MarkDirty();
531     void BindWallet(CWallet *pwalletIn);
532     void MarkSpent(unsigned int nOut);
533     void MarkUnspent(unsigned int nOut);
534     bool IsSpent(unsigned int nOut) const;
535
536     int64_t GetDebit(const isminefilter& filter) const;
537     int64_t GetCredit(const isminefilter& filter) const;
538     int64_t GetImmatureCredit(bool fUseCache=true) const;
539     int64_t GetImmatureWatchOnlyCredit(bool fUseCache=true) const;
540     int64_t GetAvailableCredit(bool fUseCache=true) const;
541     int64_t GetAvailableWatchCredit(bool fUseCache=true) const;
542     int64_t GetChange() const;
543
544     void GetAmounts(int64_t& nGeneratedImmature, int64_t& nGeneratedMature, std::list<std::pair<CBitcoinAddress, int64_t> >& listReceived,
545                     std::list<std::pair<CBitcoinAddress, int64_t> >& listSent, int64_t& nFee, std::string& strSentAccount, const isminefilter& filter) const;
546
547     void GetAccountAmounts(const std::string& strAccount, int64_t& nGenerated, int64_t& nReceived,
548                            int64_t& nSent, int64_t& nFee, const isminefilter& filter) const;
549
550     bool IsFromMe(const isminefilter& filter) const
551     {
552         return (GetDebit(filter) > 0);
553     }
554
555     bool InMempool() const;
556     bool IsTrusted() const;
557
558     bool WriteToDisk();
559
560     int64_t GetTxTime() const;
561     int GetRequestCount() const;
562
563     void AddSupportingTransactions(CTxDB& txdb);
564
565     bool AcceptWalletTransaction(CTxDB& txdb, bool fCheckInputs=true);
566     bool AcceptWalletTransaction();
567
568     bool RelayWalletTransaction(CTxDB& txdb);
569     bool RelayWalletTransaction();
570 };
571
572
573
574
575 class COutput
576 {
577 public:
578     const CWalletTx *tx;
579     int i;
580     int nDepth;
581     bool fSpendable;
582
583     COutput(const CWalletTx *txIn, int iIn, int nDepthIn, bool fSpendableIn)
584     {
585         tx = txIn; i = iIn; nDepth = nDepthIn; fSpendable = fSpendableIn;
586     }
587
588     std::string ToString() const
589     {
590         return strprintf("COutput(%s, %d, %d, %d) [%s]", tx->GetHash().ToString().substr(0,10).c_str(), i, fSpendable, nDepth, FormatMoney(tx->vout[i].nValue).c_str());
591     }
592 };
593
594
595
596
597 /** Private key that includes an expiration date in case it never gets used. */
598 class CWalletKey
599 {
600 public:
601     CPrivKey vchPrivKey;
602     int64_t nTimeCreated;
603     int64_t nTimeExpires;
604     std::string strComment;
605     //// todo: add something to note what created it (user, getnewaddress, change)
606     ////   maybe should have a map<string, string> property map
607
608     CWalletKey(int64_t nExpires=0)
609     {
610         nTimeCreated = (nExpires ? GetTime() : 0);
611         nTimeExpires = nExpires;
612     }
613
614     IMPLEMENT_SERIALIZE
615     (
616         if (!(nType & SER_GETHASH))
617             READWRITE(nVersion);
618         READWRITE(vchPrivKey);
619         READWRITE(nTimeCreated);
620         READWRITE(nTimeExpires);
621         READWRITE(strComment);
622     )
623 };
624
625
626
627
628
629
630 /** Account information.
631  * Stored in wallet with key "acc"+string account name.
632  */
633 class CAccount
634 {
635 public:
636     CPubKey vchPubKey;
637
638     CAccount()
639     {
640         SetNull();
641     }
642
643     void SetNull()
644     {
645         vchPubKey = CPubKey();
646     }
647
648     IMPLEMENT_SERIALIZE
649     (
650         if (!(nType & SER_GETHASH))
651             READWRITE(nVersion);
652         READWRITE(vchPubKey);
653     )
654 };
655
656
657
658 /** Internal transfers.
659  * Database key is acentry<account><counter>.
660  */
661 class CAccountingEntry
662 {
663 public:
664     std::string strAccount;
665     int64_t nCreditDebit;
666     int64_t nTime;
667     std::string strOtherAccount;
668     std::string strComment;
669     mapValue_t mapValue;
670     int64_t nOrderPos;  // position in ordered transaction list
671     uint64_t nEntryNo;
672
673     CAccountingEntry()
674     {
675         SetNull();
676     }
677
678     void SetNull()
679     {
680         nCreditDebit = 0;
681         nTime = 0;
682         strAccount.clear();
683         strOtherAccount.clear();
684         strComment.clear();
685         nOrderPos = -1;
686     }
687
688     IMPLEMENT_SERIALIZE
689     (
690         CAccountingEntry& me = *const_cast<CAccountingEntry*>(this);
691         if (!(nType & SER_GETHASH))
692             READWRITE(nVersion);
693         // Note: strAccount is serialized as part of the key, not here.
694         READWRITE(nCreditDebit);
695         READWRITE(nTime);
696         READWRITE(strOtherAccount);
697
698         if (!fRead)
699         {
700             WriteOrderPos(nOrderPos, me.mapValue);
701
702             if (!(mapValue.empty() && _ssExtra.empty()))
703             {
704                 CDataStream ss(nType, nVersion);
705                 ss.insert(ss.begin(), '\0');
706                 ss << mapValue;
707                 ss.insert(ss.end(), _ssExtra.begin(), _ssExtra.end());
708                 me.strComment.append(ss.str());
709             }
710         }
711
712         READWRITE(strComment);
713
714         size_t nSepPos = strComment.find("\0", 0, 1);
715         if (fRead)
716         {
717             me.mapValue.clear();
718             if (std::string::npos != nSepPos)
719             {
720                 CDataStream ss(std::vector<char>(strComment.begin() + nSepPos + 1, strComment.end()), nType, nVersion);
721                 ss >> me.mapValue;
722                 me._ssExtra = std::vector<char>(ss.begin(), ss.end());
723             }
724             ReadOrderPos(me.nOrderPos, me.mapValue);
725         }
726         if (std::string::npos != nSepPos)
727             me.strComment.erase(nSepPos);
728
729         me.mapValue.erase("n");
730     )
731
732 private:
733     std::vector<char> _ssExtra;
734 };
735
736 bool GetWalletFile(CWallet* pwallet, std::string &strWalletFileOut);
737
738 #endif