X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=src%2Fwallet.h;h=12d8af54ee1fec3ba89ce47f13449619e49094a3;hb=9c9ba366ebc85b0d8eef6d962a9fa84cffe0cae7;hp=6071b91ab11e1d7a1547dc70e32d756d7f17ca42;hpb=a348ee6f5081803ad1ae860c29075b08d772dd08;p=novacoin.git diff --git a/src/wallet.h b/src/wallet.h index 6071b91..12d8af5 100644 --- a/src/wallet.h +++ b/src/wallet.h @@ -37,7 +37,8 @@ enum WalletFeature FEATURE_WALLETCRYPT = 40000, // wallet encryption FEATURE_COMPRPUBKEY = 60000, // compressed public keys - FEATURE_LATEST = 60000 + FEATURE_MALLKEY = 60017, + FEATURE_LATEST = 60017 }; /** A key pool entry */ @@ -95,6 +96,7 @@ public: std::set setKeyPool; std::map mapKeyMetadata; + std::map mapMalleableKeyMetadata; typedef std::map MasterKeyMap; MasterKeyMap mapMasterKeys; @@ -102,28 +104,27 @@ public: CWallet() { - nWalletVersion = FEATURE_BASE; - nWalletMaxVersion = FEATURE_BASE; - fFileBacked = false; - nMasterKeyMaxID = 0; - pwalletdbEncryption = NULL; - pwalletdbDecryption = NULL; - nOrderPosNext = 0; - nKernelsTried = 0; - nCoinDaysTried = 0; + SetNull(); } CWallet(std::string strWalletFileIn) { - nWalletVersion = FEATURE_BASE; - nWalletMaxVersion = FEATURE_BASE; + SetNull(); + strWalletFile = strWalletFileIn; fFileBacked = true; + } + void SetNull() + { + nWalletVersion = FEATURE_BASE; + nWalletMaxVersion = FEATURE_BASE; + fFileBacked = false; nMasterKeyMaxID = 0; pwalletdbEncryption = NULL; pwalletdbDecryption = NULL; nOrderPosNext = 0; nKernelsTried = 0; nCoinDaysTried = 0; + nTimeFirstKey = 0; } std::map mapWallet; @@ -149,12 +150,18 @@ public: // keystore implementation // Generate a new key CPubKey GenerateNewKey(); + CMalleableKeyView GenerateNewMalleableKey(); // Adds a key to the store, and saves it to disk. bool AddKey(const CKey& key); + bool AddMalleableKey(const CMalleableKey& mKey); // Adds a key to the store, without saving it to disk (used by LoadWallet) bool LoadKey(const CKey& key) { return CCryptoKeyStore::AddKey(key); } // Load metadata (used by LoadWallet) bool LoadKeyMetadata(const CPubKey &pubkey, const CKeyMetadata &metadata); + bool LoadMalleableKeyMetadata(const CMalleableKeyView &keyView, const CKeyMetadata &metadata); + + // Load malleable key without saving it to disk (used by LoadWallet) + bool LoadMalleableKey(const CMalleableKey &mKey) { return CCryptoKeyStore::AddMalleableKey(mKey); } bool LoadMinVersion(int nVersion) { nWalletVersion = nVersion; nWalletMaxVersion = std::max(nWalletMaxVersion, nVersion); return true; } @@ -222,7 +229,6 @@ public: bool MergeCoins(const int64_t& nAmount, const int64_t& nMinValue, const int64_t& nMaxValue, std::list& listMerged); std::string SendMoney(CScript scriptPubKey, int64_t nValue, CWalletTx& wtxNew, bool fAskFee=false); - std::string SendMoneyToDestination(const CTxDestination &address, int64_t nValue, CWalletTx& wtxNew, bool fAskFee=false); bool NewKeyPool(unsigned int nSize = 0); bool TopUpKeyPool(unsigned int nSize = 0); @@ -331,6 +337,8 @@ public: bool GetTransaction(const uint256 &hashTx, CWalletTx& wtx); + bool ExtractAddress(const CScript& scriptPubKey, std::string& addressRet); + bool SetDefaultKey(const CPubKey &vchPubKey); // signify that a particular wallet feature is now used. this may change nWalletVersion and nWalletMaxVersion if those are lower