This commit is contained in:
jl777
2019-07-12 18:04:41 -11:00
parent 5af5292f52
commit 92a8d1f89e

View File

@@ -8062,6 +8062,7 @@ 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);
@@ -8175,7 +8176,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
// //