diff options
author | Andrew Chow <achow101-github@achow101.com> | 2020-07-03 21:15:09 -0400 |
---|---|---|
committer | Andrew Chow <achow101-github@achow101.com> | 2020-07-03 21:15:09 -0400 |
commit | a66a7a1a7060bb422eba3b8c214852416c4280d1 (patch) | |
tree | 58d1c0fb7f9b7b063fd3cf30b321da4895f329ef /src | |
parent | 3276c148c4cac7b7c9adbaab5997b26488612085 (diff) |
walletdb: don't reinitialize desc cache with multiple cache entries
When loading descriptor caches, we would accidentally reinitialize the
descriptor cache when seeing that one already exists. This should have
only been initializing the cache when one does not exist. However this
code itself is unnecessary as the act of looking up the cache to add to
it will initialize it if it didn't already exist.
This issue could be hit by trying to load a wallet that had imported a
multisig descriptor. The wallet would fail to load.
A test has been added to wallet_importdescriptors.py to catch this case.
Another test case has also been added to check that loading a wallet
with only single key descriptors works.
Diffstat (limited to 'src')
-rw-r--r-- | src/wallet/walletdb.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/wallet/walletdb.cpp b/src/wallet/walletdb.cpp index ba5087e2e1..8685127e1c 100644 --- a/src/wallet/walletdb.cpp +++ b/src/wallet/walletdb.cpp @@ -592,9 +592,6 @@ ReadKeyValue(CWallet* pwallet, CDataStream& ssKey, CDataStream& ssValue, ssValue >> ser_xpub; CExtPubKey xpub; xpub.Decode(ser_xpub.data()); - if (wss.m_descriptor_caches.count(desc_id)) { - wss.m_descriptor_caches[desc_id] = DescriptorCache(); - } if (parent) { wss.m_descriptor_caches[desc_id].CacheParentExtPubKey(key_exp_index, xpub); } else { |