Record nMinPingUsecTime

This commit is contained in:
Patrick Strateman
2015-08-13 02:31:46 -07:00
parent ae037b707c
commit 4bac601610
2 changed files with 3 additions and 0 deletions

View File

@@ -4522,6 +4522,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv,
if (pingUsecTime > 0) {
// Successful ping time measurement, replace previous
pfrom->nPingUsecTime = pingUsecTime;
pfrom->nMinPingUsecTime = std::min(pfrom->nMinPingUsecTime, pingUsecTime);
} else {
// This should never happen
sProblem = "Timing mishap";