aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet.h
diff options
context:
space:
mode:
authorAndrew Chow <achow101-github@achow101.com>2019-12-05 18:02:36 -0500
committerAndrew Chow <achow101-github@achow101.com>2019-12-06 15:05:48 -0500
commit14b5efd66ff0afbf3bf9158a724534a9090fc7fc (patch)
treec01bb76824220e70644b55c25c30b4084b80ce5a /src/wallet/wallet.h
parent97c0374a46943b2ed38ea24eeeff1f1568dd55b3 (diff)
downloadbitcoin-14b5efd66ff0afbf3bf9158a724534a9090fc7fc.tar.xz
Move fDecryptionThoroughlyChecked from CWallet to LegacyScriptPubKeyMan
Diffstat (limited to 'src/wallet/wallet.h')
-rw-r--r--src/wallet/wallet.h3
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))