| 5161 | |
| 5162 | |
| 5163 | bool AbortNode(const std::string& strMessage, const std::string& userMessage) |
| 5164 | { |
| 5165 | strMiscWarning = strMessage; |
| 5166 | LogPrintf("*** %s\n", strMessage); |
| 5167 | uiInterface.ThreadSafeMessageBox( |
| 5168 | userMessage.empty() ? _("Error: A fatal internal error occured, see debug.log for details") : userMessage, |
| 5169 | "", CClientUIInterface::MSG_ERROR); |
| 5170 | StartShutdown(); |
| 5171 | return false; |
| 5172 | } |
| 5173 | |
| 5174 | |
| 5175 | /** |
no test coverage detected