| 242 | MultisigDescriptor(int threshold, std::vector<std::unique_ptr<PubkeyProvider>> providers) : m_threshold(threshold), m_providers(std::move(providers)) {} |
| 243 | |
| 244 | bool IsRange() const override |
| 245 | { |
| 246 | for (const auto& p : m_providers) { |
| 247 | if (p->IsRange()) return true; |
| 248 | } |
| 249 | return false; |
| 250 | } |
| 251 | |
| 252 | std::string ToString() const override |
| 253 | { |