Implement IsHDEnabled in DescriptorScriptPubKeyMan

This commit is contained in:
Andrew Chow 2019-07-08 17:05:05 -04:00
parent 741122d4c1
commit ec2f9e1178
2 changed files with 5 additions and 3 deletions

View file

@ -1555,7 +1555,8 @@ void DescriptorScriptPubKeyMan::MarkUnusedAddresses(const CScript& script)
bool DescriptorScriptPubKeyMan::IsHDEnabled() const
{
return false;
LOCK(cs_desc_man);
return m_wallet_descriptor.descriptor->IsRange();
}
bool DescriptorScriptPubKeyMan::CanGetAddresses(bool internal) const

View file

@ -1331,9 +1331,10 @@ CAmount CWallet::GetChange(const CTransaction& tx) const
bool CWallet::IsHDEnabled() const
{
// All Active ScriptPubKeyMans must be HD for this to be true
bool result = true;
for (const auto& spk_man_pair : m_spk_managers) {
result &= spk_man_pair.second->IsHDEnabled();
for (const auto& spk_man : GetActiveScriptPubKeyMans()) {
result &= spk_man->IsHDEnabled();
}
return result;
}