From d8a799abe331ccfb559c167c0a24ab43961cf1c7 Mon Sep 17 00:00:00 2001 From: Duke Date: Tue, 22 Oct 2024 08:50:39 -0400 Subject: [PATCH] Make time warning correct for any HAC --- src/timedata.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/timedata.cpp b/src/timedata.cpp index cfffcf667..0ffb66e0a 100644 --- a/src/timedata.cpp +++ b/src/timedata.cpp @@ -71,11 +71,11 @@ void CTimeWarning::Warn(size_t peersAhead, size_t peersBehind) { std::string strMessage; if (peersBehind >= TIMEDATA_WARNING_MAJORITY) { - strMessage = _("Warning: Your computer's date and time may be ahead of the rest of the network! If your clock is wrong Hush will not work properly."); + strMessage = _("Warning: Your computer's date and time may be ahead of the rest of the network! If your clock is wrong this node will not work properly."); } else if (peersAhead >= TIMEDATA_WARNING_MAJORITY) { - strMessage = _("Warning: Your computer's date and time may be behind the rest of the network! If your clock is wrong Hush will not work properly."); + strMessage = _("Warning: Your computer's date and time may be behind the rest of the network! If your clock is wrong this node will not work properly."); } else { - strMessage = _("Warning: Please check that your computer's date and time are correct! If your clock is wrong Hush will not work properly."); + strMessage = _("Warning: Please check that your computer's date and time are correct! If your clock is wrong this node will not work properly."); } LogPrintf("*** %s\n", strMessage); uiInterface.ThreadSafeMessageBox(strMessage, "", CClientUIInterface::MSG_WARNING);