From 21831c9b24189864507c1e1517a5820f448ff45b Mon Sep 17 00:00:00 2001 From: selsta Date: Sun, 21 Aug 2022 02:42:07 +0200 Subject: [PATCH] main: add --no-igd to simple mode flags Should solve issues with monerod taking a while to exit. Simple mode nodes aren't beneficial to the network anyway, so having no incoming connections in some cases should be fine. --- main.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.qml b/main.qml index c03acdf3..4be6be06 100644 --- a/main.qml +++ b/main.qml @@ -2034,7 +2034,7 @@ ApplicationWindow { return; } - const simpleModeFlags = "--enable-dns-blocklist --out-peers 16"; + const simpleModeFlags = "--enable-dns-blocklist --out-peers 16 --no-igd"; if (appWindow.daemonRunning) { appWindow.stopDaemon(function() { appWindow.startDaemon(simpleModeFlags)