From 465f6bfe2724f3ecd211505e7ba6d3028a83c53a Mon Sep 17 00:00:00 2001 From: Jaquee Date: Fri, 24 Feb 2017 16:57:44 +0100 Subject: [PATCH] fix daemon startup with --check-updates disabled --- src/daemon/DaemonManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/daemon/DaemonManager.cpp b/src/daemon/DaemonManager.cpp index e1e89f61..0820b462 100644 --- a/src/daemon/DaemonManager.cpp +++ b/src/daemon/DaemonManager.cpp @@ -44,7 +44,7 @@ bool DaemonManager::start(const QString &flags, bool testnet) arguments << str; } - arguments << "--updates" << "disabled"; + arguments << "--check-updates" << "disabled"; qDebug() << "starting monerod " + m_monerod; qDebug() << "With command line arguments " << arguments;