- E75F60D2FE430B9077AED4638530BE81B51C558F5947C2CAE6D7B90FBD1801FFE030C243684DFCE754AA0A5C1810067B33A55526AAF7218B702F9ACA67190586
+ EE3C1538CD1DD4DA0D5D1EB22CCEA247188AE0BA136C59FDBB816FFE887B8D3A1F002BBDDAE205D80914A28A3A980CBF59C1E8D05482AE1502CE095942BEC1B2
bitcoin/src/protocol.cpp
(247 . 7)(247 . 7)
232
233 void CAddress::print() const
234 {
235 printf("CAddress(%s)\n", ToString().c_str());
236 printf(SINF SADR "CAddress<%s>\n", ToString().c_str());
237 }
238
239 CInv::CInv()
(297 . 10)(297 . 10)
241
242 std::string CInv::ToString() const
243 {
244 return strprintf("%s %s", GetCommand(), hash.ToString().substr(0,20).c_str());
245 return strprintf("%s %s", GetCommand(), hash.ToString().c_str());
246 }
247
248 void CInv::print() const
249 {
250 printf("CInv(%s)\n", ToString().c_str());
251 printf(SINF SNET "CInv<%s>\n", ToString().c_str());
252 }