mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 16:28:14 +00:00
commit
0f69ca4bff
1 changed files with 5 additions and 0 deletions
|
@ -27,7 +27,12 @@ bool DaemonManager::start(const QString &flags, bool testnet)
|
|||
{
|
||||
// prepare command line arguments and pass to monerod
|
||||
QStringList arguments;
|
||||
|
||||
// Start daemon with --detach flag on non-windows platforms
|
||||
#ifndef Q_OS_WIN
|
||||
arguments << "--detach";
|
||||
#endif
|
||||
|
||||
if(testnet)
|
||||
arguments << "--testnet";
|
||||
|
||||
|
|
Loading…
Reference in a new issue