Merge pull request #2103

1f90854 support user defined max-concurrency (xmrdsc)
This commit is contained in:
luigi1111 2019-04-23 15:32:42 -05:00
commit b39f041177
No known key found for this signature in database
GPG key ID: F4ACA0183641E010

View file

@ -76,7 +76,9 @@ bool DaemonManager::start(const QString &flags, NetworkType::Type nettype, const
// --max-concurrency based on threads available. max: 6
int32_t concurrency = qBound(1, QThread::idealThreadCount() / 2, 6);
if(!flags.contains("--max-concurrency", Qt::CaseSensitive)){
arguments << "--max-concurrency" << QString::number(concurrency);
}
qDebug() << "starting monerod " + m_monerod;
qDebug() << "With command line arguments " << arguments;