DaemonManager: start monerod with '--non-interactive' cli option set

This commit is contained in:
xiphon 2021-03-19 10:28:26 +00:00
parent c18614f96f
commit d83f14799e
2 changed files with 2 additions and 1 deletions

View File

@ -398,7 +398,7 @@ Rectangle{
placeholderFontSize: 15
text: persistentSettings.daemonFlags
addressValidation: false
error: text.match(/(^|\s)--(data-dir|bootstrap-daemon-address)/)
error: text.match(/(^|\s)--(data-dir|bootstrap-daemon-address|non-interactive)/)
onEditingFinished: {
if (!daemonFlags.error) {
persistentSettings.daemonFlags = daemonFlags.text;

View File

@ -90,6 +90,7 @@ bool DaemonManager::start(const QString &flags, NetworkType::Type nettype, const
}
arguments << "--check-updates" << "disabled";
arguments << "--non-interactive";
// --max-concurrency based on threads available.
int32_t concurrency = qMax(1, QThread::idealThreadCount() / 2);