From cd093049dda878e8424fdc1ef828b5f644bd91d4 Mon Sep 17 00:00:00 2001 From: MarcoFalke <*~=`'#}+{/-|&status@721217.xyz> Date: Mon, 7 Oct 2024 11:18:43 +0200 Subject: [PATCH] init: Remove incorrect comment about shutdown condition Shutdown is indeed called, and it being overkill does not make sense either. --- src/init.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/init.cpp b/src/init.cpp index c22370e0407..883f8fcb89a 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -1662,7 +1662,6 @@ bool AppInitMain(NodeContext& node, interfaces::BlockAndHeaderTipInfo* tip_info) // As LoadBlockIndex can take several minutes, it's possible the user // requested to kill the GUI during the last operation. If so, exit. - // As the program has not fully started yet, Shutdown() is possibly overkill. if (ShutdownRequested(node)) { LogPrintf("Shutdown requested. Exiting.\n"); return false;