diff --git a/src/qt/forms/debugwindow.ui b/src/qt/forms/debugwindow.ui index 139c8e161ee..d8112117cc1 100644 --- a/src/qt/forms/debugwindow.ui +++ b/src/qt/forms/debugwindow.ui @@ -1100,14 +1100,17 @@ - + + + The network protocol this peer is connected through: IPv4, IPv6, Onion, I2P, or CJDNS. + - Version + Network - + IBeamCursor @@ -1123,14 +1126,14 @@ - + - User Agent + Version - + IBeamCursor @@ -1146,14 +1149,14 @@ - + - Services + User Agent - + IBeamCursor @@ -1169,14 +1172,14 @@ - + - Starting Block + Services - + IBeamCursor @@ -1192,14 +1195,14 @@ - + - Synced Headers + Starting Block - + IBeamCursor @@ -1215,14 +1218,14 @@ - + - Synced Blocks + Synced Headers - + IBeamCursor @@ -1238,14 +1241,14 @@ - + - Connection Time + Synced Blocks - + IBeamCursor @@ -1261,14 +1264,14 @@ - + - Last Send + Connection Time - + IBeamCursor @@ -1284,14 +1287,14 @@ - + - Last Receive + Last Send - + IBeamCursor @@ -1307,14 +1310,14 @@ - + - Sent + Last Receive - + IBeamCursor @@ -1330,14 +1333,14 @@ - + - Received + Sent - + IBeamCursor @@ -1353,14 +1356,14 @@ - + - Ping Time + Received - + IBeamCursor @@ -1376,17 +1379,14 @@ - - - The duration of a currently outstanding ping. - + - Ping Wait + Ping Time - + IBeamCursor @@ -1402,14 +1402,17 @@ - + + + The duration of a currently outstanding ping. + - Min Ping + Ping Wait - + IBeamCursor @@ -1425,14 +1428,14 @@ - + - Time Offset + Min Ping - + IBeamCursor @@ -1448,17 +1451,14 @@ - - - The mapped Autonomous System used for diversifying peer selection. - + - Mapped AS + Time Offset - + IBeamCursor @@ -1474,6 +1474,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 ee82be954b7..aa2c28453bd 100644 --- a/src/qt/rpcconsole.cpp +++ b/src/qt/rpcconsole.cpp @@ -1109,6 +1109,7 @@ void RPCConsole::updateDetailWidget() ui->peerVersion->setText(QString::number(stats->nodeStats.nVersion)); ui->peerSubversion->setText(QString::fromStdString(stats->nodeStats.cleanSubVer)); ui->peerDirection->setText(stats->nodeStats.fInbound ? tr("Inbound") : tr("Outbound")); + ui->peerNetwork->setText(GUIUtil::NetworkToQString(stats->nodeStats.m_network)); if (stats->nodeStats.m_permissionFlags == PF_NONE) { ui->peerPermissions->setText(tr("N/A")); } else {