| 3007 | } |
| 3008 | |
| 3009 | bool DescriptorCache::GetCachedParentExtPubKey(uint32_t key_exp_pos, CExtPubKey& xpub) const |
| 3010 | { |
| 3011 | const auto& it = m_parent_xpubs.find(key_exp_pos); |
| 3012 | if (it == m_parent_xpubs.end()) return false; |
| 3013 | xpub = it->second; |
| 3014 | return true; |
| 3015 | } |
| 3016 | |
| 3017 | bool DescriptorCache::GetCachedDerivedExtPubKey(uint32_t key_exp_pos, uint32_t der_index, CExtPubKey& xpub) const |
| 3018 | { |