diff options
author | R E Broadley <rebroad+github@gmail.com> | 2016-10-14 21:11:38 +0700 |
---|---|---|
committer | R E Broadley <rebroad+github@gmail.com> | 2016-10-15 20:43:11 +0700 |
commit | 1724a405c9065f2c939e936aca9b5d37fca5e954 (patch) | |
tree | ec0a4b2adf350f1dfbef0408d9d6e3dd314c207d /src/net.cpp | |
parent | 8d46429c83ec3815d0c595bf541ef5557c6b4942 (diff) |
Display minimum ping in debug window.
Diffstat (limited to 'src/net.cpp')
-rw-r--r-- | src/net.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net.cpp b/src/net.cpp index 19dd040997..0f719a9c7f 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) |