| 54 | return m_provider->GetTaprootSpendData(output_key, spenddata); |
| 55 | } |
| 56 | bool HidingSigningProvider::GetTaprootBuilder(const XOnlyPubKey& output_key, TaprootBuilder& builder) const |
| 57 | { |
| 58 | return m_provider->GetTaprootBuilder(output_key, builder); |
| 59 | } |
| 60 | std::vector<CPubKey> HidingSigningProvider::GetMuSig2ParticipantPubkeys(const CPubKey& pubkey) const |
| 61 | { |
| 62 | if (m_hide_origin) return {}; |
no test coverage detected