MCPcopy Create free account
hub / github.com/BTCGPU/BTCGPU / IsRange

Method IsRange

src/script/descriptor.cpp:244–250  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 {

Callers

nothing calls this directly

Calls 1

IsRangeMethod · 0.45

Tested by

no test coverage detected