aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorPatrick Strateman <patrick.strateman@gmail.com>2015-08-13 02:31:46 -0700
committerPatrick Strateman <patrick.strateman@gmail.com>2015-08-22 15:38:23 -0700
commit4bac60161029de6d71ef1e51e7af803ce6fb8405 (patch)
tree2d8ff260f263ea341c9d6fef7eb564c355144d4c /src/main.cpp
parentae037b707ce164087790f149c048871c66e14cfd (diff)
downloadbitcoin-4bac60161029de6d71ef1e51e7af803ce6fb8405.tar.xz
Record nMinPingUsecTime
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 33b57a5285..35fbec6665 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -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";