| 971 | } |
| 972 | |
| 973 | std::string ToString(bool compat_format) const final |
| 974 | { |
| 975 | std::string ret; |
| 976 | ToStringHelper(nullptr, ret, compat_format ? StringType::COMPAT : StringType::PUBLIC); |
| 977 | return AddChecksum(ret); |
| 978 | } |
| 979 | |
| 980 | bool ToPrivateString(const SigningProvider& arg, std::string& out) const override |
| 981 | { |
nothing calls this directly
no test coverage detected