| 8 | #include "script/standard.h" |
| 9 | |
| 10 | std::string EncodeDestination(const CTxDestination &dest, |
| 11 | const Config &config) { |
| 12 | const CChainParams ¶ms = config.GetChainParams(); |
| 13 | return EncodeBase58Addr(dest, params); |
| 14 | } |
| 15 | |
| 16 | CTxDestination DecodeDestination(const std::string &addr, |
| 17 | const CChainParams ¶ms) { |