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