From cf0fb86d9096fbf5117729615f6cd93c27f3a8ab Mon Sep 17 00:00:00 2001 From: sowle Date: Tue, 12 May 2020 13:02:06 +0300 Subject: [PATCH] GUI: fix unconditional backend stop when predownloading fails --- src/wallet/wallets_manager.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/wallet/wallets_manager.cpp b/src/wallet/wallets_manager.cpp index 5583e073..f9c27a43 100644 --- a/src/wallet/wallets_manager.cpp +++ b/src/wallet/wallets_manager.cpp @@ -345,7 +345,10 @@ bool wallets_manager::init_local_daemon() return static_cast(m_stop_singal_sent); }); - CHECK_AND_ASSERT_AND_SET_GUI(res, "pre-downloading failed"); + if (!res) + { + LOG_PRINT_RED("pre-downloading failed, continue with normal network synchronization", LOG_LEVEL_0); + } }