| 693 | protected: |
| 694 | std::string ToStringExtra() const override { return HexStr(m_script); } |
| 695 | std::vector<CScript> MakeScripts(const std::vector<CPubKey>&, Span<const CScript>, FlatSigningProvider&) const override { return Vector(m_script); } |
| 696 | public: |
| 697 | RawDescriptor(CScript script) : DescriptorImpl({}, "raw"), m_script(std::move(script)) {} |
| 698 | bool IsSolvable() const final { return false; } |