Move fDecryptionThoroughlyChecked from CWallet to LegacyScriptPubKeyMan

This commit is contained in:
Andrew Chow
2019-12-05 18:02:36 -05:00
parent 97c0374a46
commit 14b5efd66f
3 changed files with 4 additions and 6 deletions

View File

@@ -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(); }