diff options
author | Andrew Chow <achow101-github@achow101.com> | 2019-12-05 18:02:36 -0500 |
---|---|---|
committer | Andrew Chow <achow101-github@achow101.com> | 2019-12-06 15:05:48 -0500 |
commit | 14b5efd66ff0afbf3bf9158a724534a9090fc7fc (patch) | |
tree | c01bb76824220e70644b55c25c30b4084b80ce5a /src/wallet/wallet.h | |
parent | 97c0374a46943b2ed38ea24eeeff1f1568dd55b3 (diff) |
Move fDecryptionThoroughlyChecked from CWallet to LegacyScriptPubKeyMan
Diffstat (limited to 'src/wallet/wallet.h')
-rw-r--r-- | src/wallet/wallet.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/wallet/wallet.h b/src/wallet/wallet.h index 82661fcc31..50cd8833ba 100644 --- a/src/wallet/wallet.h +++ b/src/wallet/wallet.h @@ -601,8 +601,6 @@ private: //! if fUseCrypto is false, vMasterKey must be empty std::atomic<bool> fUseCrypto; - //! keeps track of whether Unlock has run a thorough check before - bool fDecryptionThoroughlyChecked; bool SetCrypted(); bool Unlock(const CKeyingMaterial& vMasterKeyIn, bool accept_no_keys = false); @@ -735,7 +733,6 @@ public: /** Construct wallet with specified name and database implementation. */ CWallet(interfaces::Chain* chain, const WalletLocation& location, std::unique_ptr<WalletDatabase> database) : fUseCrypto(false), - fDecryptionThoroughlyChecked(false), m_chain(chain), m_location(location), database(std::move(database)) |