From bed9dd2cd28253a315ea00aaf5e6dc9af7cd25f6 Mon Sep 17 00:00:00 2001 From: Amgad Abdelhafez Date: Tue, 2 May 2017 19:33:52 -0400 Subject: [PATCH 1/2] Update timedata.cpp Changing error message string from botcoin core to zcash --- src/timedata.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/timedata.cpp b/src/timedata.cpp index a14d69c11..8a579a3d3 100644 --- a/src/timedata.cpp +++ b/src/timedata.cpp @@ -99,7 +99,7 @@ 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 = _("Warning: Please check that your computer's date and time are correct! If your clock is wrong zcash will not work properly."); strMiscWarning = strMessage; LogPrintf("*** %s\n", strMessage); uiInterface.ThreadSafeMessageBox(strMessage, "", CClientUIInterface::MSG_WARNING); From 8dafb9c6cee260f095a85bb693726600329b9c98 Mon Sep 17 00:00:00 2001 From: Amgad Abdelhafez Date: Fri, 5 May 2017 11:24:48 -0400 Subject: [PATCH 2/2] Update timedata.cpp Capitalizing the 'z' in "Zcash" string --- src/timedata.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/timedata.cpp b/src/timedata.cpp index 8a579a3d3..1dcef2de3 100644 --- a/src/timedata.cpp +++ b/src/timedata.cpp @@ -99,7 +99,7 @@ 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 zcash will not work properly."); + string strMessage = _("Warning: Please check that your computer's date and time are correct! If your clock is wrong Zcash will not work properly."); strMiscWarning = strMessage; LogPrintf("*** %s\n", strMessage); uiInterface.ThreadSafeMessageBox(strMessage, "", CClientUIInterface::MSG_WARNING);