aboutsummaryrefslogtreecommitdiff
path: root/src/net.cpp
diff options
context:
space:
mode:
authorR E Broadley <[email protected]>2016-10-14 21:11:38 +0700
committerR E Broadley <[email protected]>2016-10-15 20:43:11 +0700
commit1724a405c9065f2c939e936aca9b5d37fca5e954 (patch)
treeec0a4b2adf350f1dfbef0408d9d6e3dd314c207d /src/net.cpp
parentMerge #8911: qt: Translate all files, even if wallet disabled (diff)
downloaddiscoin-1724a405c9065f2c939e936aca9b5d37fca5e954.tar.xz
discoin-1724a405c9065f2c939e936aca9b5d37fca5e954.zip
Display minimum ping in debug window.
Diffstat (limited to 'src/net.cpp')
-rw-r--r--src/net.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net.cpp b/src/net.cpp
index 19dd04099..0f719a9c7 100644
--- a/src/net.cpp
+++ b/src/net.cpp
@@ -659,7 +659,7 @@ void CNode::copyStats(CNodeStats &stats)
// Raw ping time is in microseconds, but show it to user as whole seconds (Bitcoin users should be well used to small numbers with many decimal places by now :)
stats.dPingTime = (((double)nPingUsecTime) / 1e6);
- stats.dPingMin = (((double)nMinPingUsecTime) / 1e6);
+ stats.dMinPing = (((double)nMinPingUsecTime) / 1e6);
stats.dPingWait = (((double)nPingUsecWait) / 1e6);
// Leave string empty if addrLocal invalid (not filled in yet)