refactor: Use AbortError in FatalError

This is needed for consistency with AbortNode
This commit is contained in:
MarcoFalke 2020-06-16 11:02:46 -04:00
parent 4b30c41b4e
commit fa02b47313
No known key found for this signature in database
GPG Key ID: CE2B75697E69A548
3 changed files with 3 additions and 6 deletions

View File

@ -23,9 +23,7 @@ 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();
}

View File

@ -122,6 +122,7 @@ void InitWarning(const bilingual_str& str);
/** Show error message **/
bool InitError(const bilingual_str& str);
constexpr auto AbortError = InitError;
extern CClientUIInterface uiInterface;

View File

@ -1662,8 +1662,6 @@ bool UndoReadFromDisk(CBlockUndo& blockundo, const CBlockIndex* pindex)
return true;
}
constexpr auto AbortError = InitError;
/** Abort with a message */
static bool AbortNode(const std::string& strMessage, bilingual_str user_message = bilingual_str())
{