MCPcopy Create free account
hub / github.com/WaykiChain/WaykiChain / ToString

Method ToString

src/commons/base58.cpp:175–179  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

173}
174
175string CBase58Data::ToString() const {
176 vector<unsigned char> vch = vchVersion;
177 vch.insert(vch.end(), vchData.begin(), vchData.end());
178 return EncodeBase58Check(vch);
179}
180
181int CBase58Data::CompareTo(const CBase58Data& b58) const {
182 if (vchVersion < b58.vchVersion)

Callers 3

ToStringFunction · 0.45
GenPendingDelegatesFunction · 0.45
ProcessBlockDelegatesMethod · 0.45

Calls 4

EncodeBase58CheckFunction · 0.85
insertMethod · 0.45
endMethod · 0.45
beginMethod · 0.45

Tested by

no test coverage detected