diff --git a/src/qt/forms/debugwindow.ui b/src/qt/forms/debugwindow.ui
index 3831852185a..769da4b45bb 100644
--- a/src/qt/forms/debugwindow.ui
+++ b/src/qt/forms/debugwindow.ui
@@ -1198,14 +1198,17 @@
-
-
+
+
+ Whether the peer requested us to relay transactions.
+
- Starting Block
+ Wants Tx Relay
-
-
+
IBeamCursor
@@ -1221,14 +1224,14 @@
-
-
+
- Synced Headers
+ Starting Block
-
-
+
IBeamCursor
@@ -1244,14 +1247,14 @@
-
-
+
- Synced Blocks
+ Synced Headers
-
-
+
IBeamCursor
@@ -1267,14 +1270,14 @@
-
-
+
- Connection Time
+ Synced Blocks
-
-
+
IBeamCursor
@@ -1290,14 +1293,14 @@
-
-
+
- Last Send
+ Connection Time
-
-
+
IBeamCursor
@@ -1313,14 +1316,14 @@
-
-
+
- Last Receive
+ Last Send
-
-
+
IBeamCursor
@@ -1336,14 +1339,14 @@
-
-
+
- Sent
+ Last Receive
-
-
+
IBeamCursor
@@ -1359,14 +1362,14 @@
-
-
+
- Received
+ Sent
-
-
+
IBeamCursor
@@ -1382,14 +1385,14 @@
-
-
+
- Ping Time
+ Received
-
-
+
IBeamCursor
@@ -1405,17 +1408,14 @@
-
-
-
- The duration of a currently outstanding ping.
-
+
- Ping Wait
+ Ping Time
-
-
+
IBeamCursor
@@ -1431,14 +1431,17 @@
-
-
+
+
+ The duration of a currently outstanding ping.
+
- Min Ping
+ Ping Wait
-
-
+
IBeamCursor
@@ -1454,14 +1457,14 @@
-
-
+
- Time Offset
+ Min Ping
-
-
+
IBeamCursor
@@ -1477,17 +1480,14 @@
-
-
-
- The mapped Autonomous System used for diversifying peer selection.
-
+
- Mapped AS
+ Time Offset
-
-
+
IBeamCursor
@@ -1503,6 +1503,32 @@
-
+
+
+ The mapped Autonomous System used for diversifying peer selection.
+
+
+ Mapped AS
+
+
+
+ -
+
+
+ IBeamCursor
+
+
+ N/A
+
+
+ Qt::PlainText
+
+
+ Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse
+
+
+
+ -
Qt::Vertical
diff --git a/src/qt/rpcconsole.cpp b/src/qt/rpcconsole.cpp
index 2758ee351a0..52ebfb16b75 100644
--- a/src/qt/rpcconsole.cpp
+++ b/src/qt/rpcconsole.cpp
@@ -1109,6 +1109,7 @@ void RPCConsole::updateDetailWidget()
peerAddrDetails += "
" + tr("via %1").arg(QString::fromStdString(stats->nodeStats.addrLocal));
ui->peerHeading->setText(peerAddrDetails);
ui->peerServices->setText(GUIUtil::formatServicesStr(stats->nodeStats.nServices));
+ ui->peerRelayTxes->setText(stats->nodeStats.fRelayTxes ? "Yes" : "No");
ui->peerLastSend->setText(stats->nodeStats.nLastSend ? GUIUtil::formatDurationStr(GetSystemTimeInSeconds() - stats->nodeStats.nLastSend) : tr("never"));
ui->peerLastRecv->setText(stats->nodeStats.nLastRecv ? GUIUtil::formatDurationStr(GetSystemTimeInSeconds() - stats->nodeStats.nLastRecv) : tr("never"));
ui->peerBytesSent->setText(GUIUtil::formatBytes(stats->nodeStats.nSendBytes));