diff --git a/src/qt/clientmodel.cpp b/src/qt/clientmodel.cpp
index 5d98dc7a93..48f38f0fd1 100644
--- a/src/qt/clientmodel.cpp
+++ b/src/qt/clientmodel.cpp
@@ -282,11 +282,6 @@ bool ClientModel::isReleaseVersion() const
return CLIENT_VERSION_IS_RELEASE;
}
-QString ClientModel::clientName() const
-{
- return QString::fromStdString(CLIENT_NAME);
-}
-
QString ClientModel::formatClientStartupTime() const
{
return QDateTime::fromTime_t(nClientStartupTime).toString();
diff --git a/src/qt/clientmodel.h b/src/qt/clientmodel.h
index 457bdc8c37..c29bace26d 100644
--- a/src/qt/clientmodel.h
+++ b/src/qt/clientmodel.h
@@ -82,7 +82,6 @@ public:
QString formatFullVersion() const;
QString formatSubVersion() const;
bool isReleaseVersion() const;
- QString clientName() const;
QString formatClientStartupTime() const;
QString dataDir() const;
diff --git a/src/qt/forms/debugwindow.ui b/src/qt/forms/debugwindow.ui
index 40a4f85cff..cd60a440aa 100644
--- a/src/qt/forms/debugwindow.ui
+++ b/src/qt/forms/debugwindow.ui
@@ -41,36 +41,13 @@
-
-
-
- Client name
-
-
-
- -
-
-
- IBeamCursor
-
-
- N/A
-
-
- Qt::PlainText
-
-
- Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse
-
-
-
- -
Client version
- -
+
-
IBeamCursor
@@ -86,7 +63,7 @@
- -
+
-
User Agent
@@ -96,7 +73,7 @@
- -
+
-
IBeamCursor
@@ -112,7 +89,7 @@
- -
+
-
Using BerkeleyDB version
@@ -122,7 +99,7 @@
- -
+
-
IBeamCursor
@@ -138,14 +115,14 @@
- -
+
-
Datadir
- -
+
-
IBeamCursor
@@ -164,14 +141,14 @@
- -
+
-
Startup time
- -
+
-
IBeamCursor
@@ -187,7 +164,7 @@
- -
+
-
@@ -200,14 +177,14 @@
- -
+
-
Name
- -
+
-
IBeamCursor
@@ -223,14 +200,14 @@
- -
+
-
Number of connections
- -
+
-
IBeamCursor
@@ -246,21 +223,21 @@
- -
+
-
Number of Masternodes
- -
+
-
N/A
- -
+
-
@@ -273,14 +250,14 @@
- -
+
-
Current number of blocks
- -
+
-
IBeamCursor
@@ -296,14 +273,14 @@
- -
+
-
Last block time
- -
+
-
IBeamCursor
@@ -319,7 +296,7 @@
- -
+
-
@@ -332,14 +309,14 @@
- -
+
-
Current number of transactions
- -
+
-
IBeamCursor
@@ -355,14 +332,14 @@
- -
+
-
Memory usage
- -
+
-
IBeamCursor
@@ -378,7 +355,7 @@
- -
+
-
3
@@ -418,7 +395,7 @@
- -
+
-
Qt::Vertical
diff --git a/src/qt/rpcconsole.cpp b/src/qt/rpcconsole.cpp
index be86e3bd3c..12039b4e61 100644
--- a/src/qt/rpcconsole.cpp
+++ b/src/qt/rpcconsole.cpp
@@ -481,7 +481,6 @@ void RPCConsole::setClientModel(ClientModel *model)
// Provide initial values
ui->clientVersion->setText(model->formatFullVersion());
ui->clientUserAgent->setText(model->formatSubVersion());
- ui->clientName->setText(model->clientName());
ui->dataDir->setText(model->dataDir());
ui->startupTime->setText(model->formatClientStartupTime());
ui->networkName->setText(QString::fromStdString(Params().NetworkIDString()));