This commit is contained in:
jl777
2019-07-12 18:12:23 -11:00
parent 92a8d1f89e
commit 96daa77e34

View File

@@ -8062,7 +8062,6 @@ bool ProcessMessages(CNode* pfrom)
// (x) data // (x) data
// //
bool fOk = true; bool fOk = true;
fprintf(stderr,"process messages\n");
if (!pfrom->vRecvGetData.empty()) if (!pfrom->vRecvGetData.empty())
ProcessGetData(pfrom); ProcessGetData(pfrom);
@@ -8176,7 +8175,7 @@ bool SendMessages(CNode* pto, bool fSendTrickle)
// Don't send anything until we get its version message // Don't send anything until we get its version message
if (pto->nVersion == 0) if (pto->nVersion == 0)
return true; return true;
fprintf(stderr,"send messages\n");
// //
// Message: ping // Message: ping
// //