| 1440 | } |
| 1441 | |
| 1442 | bool DescriptorCache::GetCachedParentExtPubKey(uint32_t key_exp_pos, CExtPubKey& xpub) const |
| 1443 | { |
| 1444 | const auto& it = m_parent_xpubs.find(key_exp_pos); |
| 1445 | if (it == m_parent_xpubs.end()) return false; |
| 1446 | xpub = it->second; |
| 1447 | return true; |
| 1448 | } |
| 1449 | |
| 1450 | bool DescriptorCache::GetCachedDerivedExtPubKey(uint32_t key_exp_pos, uint32_t der_index, CExtPubKey& xpub) const |
| 1451 | { |