1
0

qml network overview: show server height, if lagging

to see how many blocks it is behind
This commit is contained in:
SomberNight
2023-04-05 11:21:31 +00:00
parent dd1a83e1c0
commit 8ea63f9bde
2 changed files with 23 additions and 3 deletions

View File

@@ -66,6 +66,15 @@ Pane {
Label {
text: Network.height
}
Label {
text: qsTr('Server Height:');
color: Material.accentColor
visible: Network.server_height != Network.height
}
Label {
text: Network.server_height + " (lagging)"
visible: Network.server_height != Network.height
}
Heading {
Layout.columnSpan: 2
text: qsTr('Mempool fees')