| 35 | } |
| 36 | |
| 37 | bool GetPubKeyByXOnly(const XOnlyPubKey& pubkey, CPubKey& out) const |
| 38 | { |
| 39 | for (const auto& id : pubkey.GetKeyIDs()) { |
| 40 | if (GetPubKey(id, out)) return true; |
| 41 | } |
| 42 | return false; |
| 43 | } |
| 44 | |
| 45 | bool GetKeyOriginByXOnly(const XOnlyPubKey& pubkey, KeyOriginInfo& info) const |
| 46 | { |
no test coverage detected