MCPcopy Create free account
hub / github.com/bitcoin/bitcoin / IsSolvable

Method IsSolvable

src/script/descriptor.cpp:876–882  ·  view source on GitHub ↗

NOLINTNEXTLINE(misc-no-recursion)

Source from the content-addressed store, hash-verified

874
875 // NOLINTNEXTLINE(misc-no-recursion)
876 bool IsSolvable() const override
877 {
878 for (const auto& arg : m_subdescriptor_args) {
879 if (!arg->IsSolvable()) return false;
880 }
881 return true;
882 }
883
884 // NOLINTNEXTLINE(misc-no-recursion)
885 bool HavePrivateKeys(const SigningProvider& arg) const override

Callers

nothing calls this directly

Calls 1

IsSolvableMethod · 0.45

Tested by

no test coverage detected