| 182 | } |
| 183 | |
| 184 | std::string CBase58Data::ToString() const |
| 185 | { |
| 186 | std::vector<unsigned char> vch = vchVersion; |
| 187 | vch.insert(vch.end(), vchData.begin(), vchData.end()); |
| 188 | return EncodeBase58Check(vch); |
| 189 | } |
| 190 | |
| 191 | int CBase58Data::CompareTo(const CBase58Data& b58) const |
| 192 | { |
nothing calls this directly
no test coverage detected