| 698 | bool IsSolvable() const final { return false; } |
| 699 | |
| 700 | std::optional<OutputType> GetOutputType() const override |
| 701 | { |
| 702 | CTxDestination dest; |
| 703 | ExtractDestination(m_script, dest); |
| 704 | return OutputTypeFromDestination(dest); |
| 705 | } |
| 706 | bool IsSingleType() const final { return true; } |
| 707 | }; |
| 708 |
nothing calls this directly
no test coverage detected