aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/scriptpubkeyman.cpp
diff options
context:
space:
mode:
authorAndrew Chow <[email protected]>2019-12-05 18:02:36 -0500
committerAndrew Chow <[email protected]>2019-12-06 15:05:48 -0500
commit14b5efd66ff0afbf3bf9158a724534a9090fc7fc (patch)
treec01bb76824220e70644b55c25c30b4084b80ce5a /src/wallet/scriptpubkeyman.cpp
parentMove Unlock implementation to LegacyScriptPubKeyMan (diff)
downloaddiscoin-14b5efd66ff0afbf3bf9158a724534a9090fc7fc.tar.xz
discoin-14b5efd66ff0afbf3bf9158a724534a9090fc7fc.zip
Move fDecryptionThoroughlyChecked from CWallet to LegacyScriptPubKeyMan
Diffstat (limited to 'src/wallet/scriptpubkeyman.cpp')
-rw-r--r--src/wallet/scriptpubkeyman.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/wallet/scriptpubkeyman.cpp b/src/wallet/scriptpubkeyman.cpp
index 0adfefa1a..8a3f36c2e 100644
--- a/src/wallet/scriptpubkeyman.cpp
+++ b/src/wallet/scriptpubkeyman.cpp
@@ -1396,8 +1396,7 @@ LegacyScriptPubKeyMan::LegacyScriptPubKeyMan(CWallet& wallet)
: ScriptPubKeyMan(wallet),
m_wallet(wallet),
cs_wallet(wallet.cs_wallet),
- fUseCrypto(wallet.fUseCrypto),
- fDecryptionThoroughlyChecked(wallet.fDecryptionThoroughlyChecked) {}
+ fUseCrypto(wallet.fUseCrypto) {}
bool LegacyScriptPubKeyMan::SetCrypted() { return m_wallet.SetCrypted(); }
bool LegacyScriptPubKeyMan::IsCrypted() const { return m_wallet.IsCrypted(); }