| 1135 | protected: |
| 1136 | std::string ToStringExtra() const override { return EncodeDestination(m_destination); } |
| 1137 | std::vector<CScript> MakeScripts(const std::vector<CPubKey>&, std::span<const CScript>, FlatSigningProvider&) const override { return Vector(GetScriptForDestination(m_destination)); } |
| 1138 | public: |
| 1139 | AddressDescriptor(CTxDestination destination) : DescriptorImpl({}, "addr"), m_destination(std::move(destination)) {} |
| 1140 | bool IsSolvable() const final { return false; } |
nothing calls this directly
no test coverage detected