diff options
author | Andrew Chow <achow101-github@achow101.com> | 2019-07-08 17:05:05 -0400 |
---|---|---|
committer | Andrew Chow <achow101-github@achow101.com> | 2020-04-23 13:59:48 -0400 |
commit | ec2f9e1178c8e38c0a5ca063fe81adac8f916348 (patch) | |
tree | f4c22c6985f5133c8d0f48c939fc2789e69a9ddc /src/wallet/scriptpubkeyman.cpp | |
parent | 741122d4c1a62ced3e96d16d67f4eeb3a6522d99 (diff) |
Implement IsHDEnabled in DescriptorScriptPubKeyMan
Diffstat (limited to 'src/wallet/scriptpubkeyman.cpp')
-rw-r--r-- | src/wallet/scriptpubkeyman.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wallet/scriptpubkeyman.cpp b/src/wallet/scriptpubkeyman.cpp index 31a87a53fe..c28b7fcfa5 100644 --- a/src/wallet/scriptpubkeyman.cpp +++ b/src/wallet/scriptpubkeyman.cpp @@ -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 |