diff options
| author | Jorge Timón <[email protected]> | 2016-10-13 23:24:21 +0200 |
|---|---|---|
| committer | Jorge Timón <[email protected]> | 2019-09-06 22:13:49 +0200 |
| commit | 3bf9d8cac09fc88727ef2f2a2bea33b90b625e50 (patch) | |
| tree | 4dff73a96a9f63c6ff46d3a0f86f961c9acbfc0d /src/qt/bitcoin.cpp | |
| parent | Testchains: Generic selection with -chain=<str> in addition of -testnet and -... (diff) | |
| download | discoin-3bf9d8cac09fc88727ef2f2a2bea33b90b625e50.tar.xz discoin-3bf9d8cac09fc88727ef2f2a2bea33b90b625e50.zip | |
Testchains: Qt: Simplify network/chain styles
Diffstat (limited to 'src/qt/bitcoin.cpp')
| -rw-r--r-- | src/qt/bitcoin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index 362ec10fa..adc4827e6 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -524,7 +524,7 @@ int GuiMain(int argc, char* argv[]) PaymentServer::ipcParseCommandLine(*node, argc, argv); #endif - QScopedPointer<const NetworkStyle> networkStyle(NetworkStyle::instantiate(QString::fromStdString(Params().NetworkIDString()))); + QScopedPointer<const NetworkStyle> networkStyle(NetworkStyle::instantiate(Params().NetworkIDString())); assert(!networkStyle.isNull()); // Allow for separate UI settings for testnets QApplication::setApplicationName(networkStyle->getAppName()); |