diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-10-18 14:48:55 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-10-18 15:16:39 +0200 |
commit | f628d9a29a2d83c80323c801f618b5375543bd0d (patch) | |
tree | dbaa0678573e9c93afd3135a6bc36b5f4e13e0c3 /src/net.cpp | |
parent | c71a654c5fffbd7d7e160142f845d9384b43faf3 (diff) | |
parent | 1724a405c9065f2c939e936aca9b5d37fca5e954 (diff) |
Merge #8925: qt: Display minimum ping in debug window.
1724a40 Display minimum ping in debug window. (R E Broadley)
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 cdd3076a2f..8d00c616f6 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) |