From 0cbf2a14d3145d07bd17d8a226774fa07c6214b7 Mon Sep 17 00:00:00 2001 From: EverGreenCoin Date: Sun, 29 Oct 2017 18:33:01 -0400 Subject: [PATCH] Status bar staking unlock warning behavior modification. --- src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index ae022fb..7b6ab82 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2876,7 +2876,7 @@ bool LoadExternalBlockFile(FILE* fileIn) extern map mapAlerts; extern CCriticalSection cs_mapAlerts; -static string strMintMessage = "Info: Staking suspended due to locked wallet. Click 'Settings' then 'Unlock Wallet' to stake."; +static string strMintMessage = "Click 'Settings' then 'Unlock Wallet' to stake."; static string strMintWarning; string GetWarnings(string strFor) @@ -4488,7 +4488,7 @@ void curecoinMiner(CWallet *pwallet, bool fProofOfStake) while (pwallet->IsLocked()) { - strMintWarning = strMintMessage; + //strMintWarning = strMintMessage; Sleep(1000); } strMintWarning = "";