diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2015-06-01 09:09:51 +0200 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2015-06-11 08:38:01 +0200 |
commit | 1b0db7b984c49f40cf95c6f685c3c5c790f07606 (patch) | |
tree | 2e5a224e156d7a383123cfac3c2b674c9b7b287c /src/qt/peertablemodel.cpp | |
parent | eba2f061a02573b62792614260181c615f753225 (diff) |
[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.cpp | 1 |
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); |