|
|
|
@ -17,15 +17,13 @@ constexpr char DB_BEST_BLOCK = 'B';
|
|
|
|
|
constexpr int64_t SYNC_LOG_INTERVAL = 30; // seconds
|
|
|
|
|
constexpr int64_t SYNC_LOCATOR_WRITE_INTERVAL = 30; // seconds
|
|
|
|
|
|
|
|
|
|
template<typename... Args>
|
|
|
|
|
template <typename... Args>
|
|
|
|
|
static void FatalError(const char* fmt, const Args&... args)
|
|
|
|
|
{
|
|
|
|
|
std::string strMessage = tfm::format(fmt, args...);
|
|
|
|
|
SetMiscWarning(Untranslated(strMessage));
|
|
|
|
|
LogPrintf("*** %s\n", strMessage);
|
|
|
|
|
uiInterface.ThreadSafeMessageBox(
|
|
|
|
|
Untranslated("Error: A fatal internal error occurred, see debug.log for details"),
|
|
|
|
|
"", CClientUIInterface::MSG_ERROR);
|
|
|
|
|
AbortError(_("A fatal internal error occurred, see debug.log for details"));
|
|
|
|
|
StartShutdown();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|