From 635e9f85d76c28647120172d9524982ebe36cf3c Mon Sep 17 00:00:00 2001 From: TheCharlatan Date: Mon, 7 Oct 2024 11:11:33 +0200 Subject: [PATCH] init: Remove misleading log line when user chooses not to retry It is bad, because it is both printed for non-GUI users and does not convey additional information. Co-authored-by: Martin Zumsande --- src/init.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/init.cpp b/src/init.cpp index 2d3c118f1f3..c22370e0407 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -1643,7 +1643,6 @@ bool AppInitMain(NodeContext& node, interfaces::BlockAndHeaderTipInfo* tip_info) error.original + ".\nPlease restart with -reindex or -reindex-chainstate to recover.", "", CClientUIInterface::MSG_ERROR | CClientUIInterface::BTN_ABORT); if (!do_retry) { - LogError("Aborted block database rebuild. Exiting.\n"); return false; } do_reindex = true;