diff options
| author | Andrew Chow <[email protected]> | 2019-12-05 18:02:36 -0500 |
|---|---|---|
| committer | Andrew Chow <[email protected]> | 2019-12-06 15:05:48 -0500 |
| commit | 14b5efd66ff0afbf3bf9158a724534a9090fc7fc (patch) | |
| tree | c01bb76824220e70644b55c25c30b4084b80ce5a /src/wallet/scriptpubkeyman.cpp | |
| parent | Move Unlock implementation to LegacyScriptPubKeyMan (diff) | |
| download | discoin-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.cpp | 3 |
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(); } |