1
0
Fork 0
forked from lthn/blockchain

GUI: fix unconditional backend stop when predownloading fails

This commit is contained in:
sowle 2020-05-12 13:02:06 +03:00
parent d1de7b062e
commit cf0fb86d90
No known key found for this signature in database
GPG key ID: C07A24B2D89D49FC

View file

@ -345,7 +345,10 @@ bool wallets_manager::init_local_daemon()
return static_cast<bool>(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);
}
}