| 489 | |
| 490 | |
| 491 | std::string EncodeParentDestination(const CTxDestination& dest) |
| 492 | { |
| 493 | return std::visit(DestinationEncoder(Params(), true), dest); |
| 494 | } |
| 495 | |
| 496 | CTxDestination DecodeParentDestination(const std::string& str, std::string& error_msg) |
| 497 | { |
no test coverage detected