Skip to content

Commit

Permalink
branding
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomas-M committed Apr 29, 2019
1 parent d14580a commit ef90764
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/deprecation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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);
Expand Down

0 comments on commit ef90764

Please sign in to comment.