From ef907646b8d3112639b157ca2e7996ea0071bf47 Mon Sep 17 00:00:00 2001 From: Tomas M Date: Mon, 29 Apr 2019 05:11:49 +0200 Subject: [PATCH] branding --- src/deprecation.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/deprecation.cpp b/src/deprecation.cpp index 5dec87d91b9..7b6d97090f0 100644 --- a/src/deprecation.cpp +++ b/src/deprecation.cpp @@ -30,7 +30,7 @@ void EnforceNodeDeprecation(int nHeight, bool forceLogging, bool fThread) { if (blocksToDeprecation == 0 || forceLogging) { auto msg = strprintf(_("This version has been deprecated as of block height %d."), DEPRECATION_HEIGHT) + " " + - _("You should upgrade to the latest version of Zcash."); + _("You should upgrade to the latest version of VoteCoin."); LogPrintf("*** %s\n", msg); CAlert::Notify(msg, fThread); uiInterface.ThreadSafeMessageBox(msg, "", CClientUIInterface::MSG_ERROR); @@ -40,7 +40,7 @@ void EnforceNodeDeprecation(int nHeight, bool forceLogging, bool fThread) { (blocksToDeprecation < DEPRECATION_WARN_LIMIT && forceLogging)) { std::string msg = strprintf(_("This version will be deprecated at block height %d, and will automatically shut down."), DEPRECATION_HEIGHT) + " " + - _("You should upgrade to the latest version of Zcash."); + _("You should upgrade to the latest version of VoteCoin."); LogPrintf("*** %s\n", msg); CAlert::Notify(msg, fThread); uiInterface.ThreadSafeMessageBox(msg, "", CClientUIInterface::MSG_WARNING);