| 31 | } |
| 32 | |
| 33 | std::string ScriptAddress<AddressType::NONSTANDARD>::inputString() const { |
| 34 | auto inputScript = getInputScript(); |
| 35 | if (inputScript) { |
| 36 | return ScriptToAsmStr(*inputScript); |
| 37 | } else { |
| 38 | return "No input script"; |
| 39 | } |
| 40 | } |
| 41 | |
| 42 | std::string ScriptAddress<AddressType::NONSTANDARD>::outputString() const { |
| 43 | return ScriptToAsmStr(getOutputScript()); |
nothing calls this directly
no test coverage detected