aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2015-09-29 08:21:28 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2015-09-29 08:44:15 +0200
commit2b0567b00291205731cbb910fb3cf33359a046ee (patch)
treeaff962a2dcb7881e543dd4febf7f5b3ac52db9b5 /src
parent1a9f19a78daa392baf2e062bddff597ce0ce30b6 (diff)
parent9fea833a1229f9657b96ef2f0a3fb6c20e790657 (diff)
downloadbitcoin-2b0567b00291205731cbb910fb3cf33359a046ee.tar.xz
Merge pull request #6728
9fea833 timedata: Prevent warning overkill (Wladimir J. van der Laan)
Diffstat (limited to 'src')
-rw-r--r--src/timedata.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/timedata.cpp b/src/timedata.cpp
index a14d69c116..0641009537 100644
--- a/src/timedata.cpp
+++ b/src/timedata.cpp
@@ -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);
}
}