Skip to content

Commit

Permalink
Merge pull request #6728
Browse files Browse the repository at this point in the history
9fea833 timedata: Prevent warning overkill (Wladimir J. van der Laan)
  • Loading branch information
laanwj committed Sep 29, 2015
2 parents 1a9f19a + 9fea833 commit 2b0567b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/timedata.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
Expand Down

0 comments on commit 2b0567b

Please sign in to comment.