Better logging of stalling
This commit is contained in:
parent
4c93322923
commit
1bcee67ee7
1 changed files with 3 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue