aboutsummaryrefslogtreecommitdiff
path: root/src/qt/peertablemodel.cpp
diff options
context:
space:
mode:
authorPhilip Kaufmann <phil.kaufmann@t-online.de>2015-06-01 09:09:51 +0200
committerPhilip Kaufmann <phil.kaufmann@t-online.de>2015-06-11 08:38:01 +0200
commit1b0db7b984c49f40cf95c6f685c3c5c790f07606 (patch)
tree2e5a224e156d7a383123cfac3c2b674c9b7b287c /src/qt/peertablemodel.cpp
parenteba2f061a02573b62792614260181c615f753225 (diff)
downloadbitcoin-1b0db7b984c49f40cf95c6f685c3c5c790f07606.tar.xz
[Qt] extend rpc console peers tab
- add node id, ping wait, whitelisted and common height - rephrase some labels to make them easier to understand for users
Diffstat (limited to 'src/qt/peertablemodel.cpp')
-rw-r--r--src/qt/peertablemodel.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/qt/peertablemodel.cpp b/src/qt/peertablemodel.cpp
index 220f273d02..06403734e9 100644
--- a/src/qt/peertablemodel.cpp
+++ b/src/qt/peertablemodel.cpp
@@ -68,6 +68,7 @@ public:
CNodeCombinedStats stats;
stats.nodeStateStats.nMisbehavior = 0;
stats.nodeStateStats.nSyncHeight = -1;
+ stats.nodeStateStats.nCommonHeight = -1;
stats.fNodeStateStatsAvailable = false;
pnode->copyStats(stats.nodeStats);
cachedNodeStats.append(stats);