| 201 | } |
| 202 | |
| 203 | std::string CBase58Data::ToString() const |
| 204 | { |
| 205 | std::vector<unsigned char> vch = vchVersion; |
| 206 | vch.insert(vch.end(), vchData.begin(), vchData.end()); |
| 207 | return EncodeBase58Check(vch); |
| 208 | } |
| 209 | |
| 210 | int CBase58Data::CompareTo(const CBase58Data& b58) const |
| 211 | { |
nothing calls this directly
no test coverage detected