diff options
| author | Wladimir J. van der Laan <[email protected]> | 2013-12-18 09:45:36 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2013-12-20 11:18:50 +0100 |
| commit | 2ea980a77cc28374a55aa1fdce953f9b570e0857 (patch) | |
| tree | d904a6f5126430fe329509904b2274b3c9dfa74f /src/qt/rpcconsole.cpp | |
| parent | Merge pull request #3415 (diff) | |
| download | discoin-2ea980a77cc28374a55aa1fdce953f9b570e0857.tar.xz discoin-2ea980a77cc28374a55aa1fdce953f9b570e0857.zip | |
qt: Treat regtest as testnet
No need to do anything special in the GUI for regtest mode,
but do treat it at testnet not mainnet to prevent confusion.
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 d43cdc7e5..a8470572d 100644 --- a/src/qt/rpcconsole.cpp +++ b/src/qt/rpcconsole.cpp @@ -284,7 +284,7 @@ void RPCConsole::setClientModel(ClientModel *model) ui->buildDate->setText(model->formatBuildDate()); ui->startupTime->setText(model->formatClientStartupTime()); - ui->isTestNet->setChecked(model->isTestNet()); + ui->networkName->setText(model->getNetworkName()); } } |