aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/scriptpubkeyman.cpp
diff options
context:
space:
mode:
authorAndrew Chow <achow101-github@achow101.com>2021-03-01 17:37:25 -0500
committerAndrew Chow <achow101-github@achow101.com>2021-06-24 14:08:46 -0400
commite6cf0ed92de31a5ac35a271b0da8f0a8364d1175 (patch)
treec963f0e090f205620a481ce94b9bfabd632aedd4 /src/wallet/scriptpubkeyman.cpp
parent3280704886b60644d103a5eb310691c003a39328 (diff)
downloadbitcoin-e6cf0ed92de31a5ac35a271b0da8f0a8364d1175.tar.xz
wallet, rpc: listdescriptors does not need unlocked
With the last hardened xpub cache, we don't neeed to have the wallet be unlocked for listdescriptors.
Diffstat (limited to 'src/wallet/scriptpubkeyman.cpp')
-rw-r--r--src/wallet/scriptpubkeyman.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/wallet/scriptpubkeyman.cpp b/src/wallet/scriptpubkeyman.cpp
index ddb6b05071..2a3880f2d1 100644
--- a/src/wallet/scriptpubkeyman.cpp
+++ b/src/wallet/scriptpubkeyman.cpp
@@ -2269,9 +2269,6 @@ const std::vector<CScript> DescriptorScriptPubKeyMan::GetScriptPubKeys() const
bool DescriptorScriptPubKeyMan::GetDescriptorString(std::string& out) const
{
LOCK(cs_desc_man);
- if (m_storage.IsLocked()) {
- return false;
- }
FlatSigningProvider provider;
provider.keys = GetKeys();