Browse Source

Merge pull request #6728

9fea833 timedata: Prevent warning overkill (Wladimir J. van der Laan)
0.13
Wladimir J. van der Laan 9 years ago
parent
commit
2b0567b002
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
  1. 3
      src/timedata.cpp

3
src/timedata.cpp

@ -99,9 +99,8 @@ void AddTimeData(const CNetAddr& ip, int64_t nOffsetSample) @@ -99,9 +99,8 @@ void AddTimeData(const CNetAddr& ip, int64_t nOffsetSample)
if (!fMatch)
{
fDone = true;
string strMessage = _("Warning: Please check that your computer's date and time are correct! If your clock is wrong Bitcoin Core will not work properly.");
string strMessage = _("Please check that your computer's date and time are correct! If your clock is wrong Bitcoin Core will not work properly.");
strMiscWarning = strMessage;
LogPrintf("*** %s\n", strMessage);
uiInterface.ThreadSafeMessageBox(strMessage, "", CClientUIInterface::MSG_WARNING);
}
}

Loading…
Cancel
Save