| 309 | } |
| 310 | |
| 311 | bool IsValidDestinationString(const std::string& str, const CChainParams& params) |
| 312 | { |
| 313 | std::string error_msg; |
| 314 | return IsValidDestination(DecodeDestination(str, params, error_msg, nullptr)); |
| 315 | } |
| 316 | |
| 317 | bool IsValidDestinationString(const std::string& str) |
| 318 | { |
no test coverage detected