| 3025 | } |
| 3026 | |
| 3027 | bool DescriptorCache::GetCachedLastHardenedExtPubKey(uint32_t key_exp_pos, CExtPubKey& xpub) const |
| 3028 | { |
| 3029 | const auto& it = m_last_hardened_xpubs.find(key_exp_pos); |
| 3030 | if (it == m_last_hardened_xpubs.end()) return false; |
| 3031 | xpub = it->second; |
| 3032 | return true; |
| 3033 | } |
| 3034 | |
| 3035 | DescriptorCache DescriptorCache::MergeAndDiff(const DescriptorCache& other) |
| 3036 | { |
no test coverage detected