diff options
| author | Philip Kaufmann <[email protected]> | 2015-08-06 15:40:50 +0200 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2015-08-07 14:01:49 +0200 |
| commit | 54bd28fa758d9753464b3eb07d203521b50de1c6 (patch) | |
| tree | 7377907272b3fbea46e724d9418a133aa114a178 /src/qt/rpcconsole.cpp | |
| parent | Merge pull request #4587 (diff) | |
| download | discoin-54bd28fa758d9753464b3eb07d203521b50de1c6.tar.xz discoin-54bd28fa758d9753464b3eb07d203521b50de1c6.zip | |
[Qt] show client user agent in debug window
Diffstat (limited to 'src/qt/rpcconsole.cpp')
| -rw-r--r-- | src/qt/rpcconsole.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/rpcconsole.cpp b/src/qt/rpcconsole.cpp index 3231b392f..35729bbb8 100644 --- a/src/qt/rpcconsole.cpp +++ b/src/qt/rpcconsole.cpp @@ -330,10 +330,10 @@ void RPCConsole::setClientModel(ClientModel *model) // Provide initial values ui->clientVersion->setText(model->formatFullVersion()); + ui->clientUserAgent->setText(model->formatSubVersion()); ui->clientName->setText(model->clientName()); ui->buildDate->setText(model->formatBuildDate()); ui->startupTime->setText(model->formatClientStartupTime()); - ui->networkName->setText(QString::fromStdString(Params().NetworkIDString())); } } |