Better logging of stalling

This commit is contained in:
R E Broadley 2014-09-04 01:31:01 +07:00 committed by Pieter Wuille
parent 4c93322923
commit 1bcee67ee7
1 changed files with 3 additions and 1 deletions

View File

@ -4468,8 +4468,10 @@ bool SendMessages(CNode* pto, bool fSendTrickle)
LogPrint("net", "Requesting block %s peer=%d\n", pindex->GetBlockHash().ToString(), pto->id);
}
if (state.nBlocksInFlight == 0 && staller != -1) {
if (State(staller)->nStallingSince == 0)
if (State(staller)->nStallingSince == 0) {
State(staller)->nStallingSince = nNow;
LogPrint("net", "Stall started peer=%d\n", staller);
}
}
}