| 675 | protected: |
| 676 | std::string ToStringExtra() const override { return EncodeDestination(m_destination); } |
| 677 | std::vector<CScript> MakeScripts(const std::vector<CPubKey>&, Span<const CScript>, FlatSigningProvider&) const override { return Vector(GetScriptForDestination(m_destination)); } |
| 678 | public: |
| 679 | AddressDescriptor(CTxDestination destination) : DescriptorImpl({}, "addr"), m_destination(std::move(destination)) {} |
| 680 | bool IsSolvable() const final { return false; } |
nothing calls this directly
no test coverage detected