X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=blobdiff_plain;f=src%2Fminer.cpp;fp=src%2Fminer.cpp;h=4c8c3058bdab14222ee45c85694f29b22eb7bf87;hp=55e4fecbf63ee9aa9cc560bb5eb47706aff22e17;hb=27a7aa22796a5132f643a0100cad1f93ce9cc4db;hpb=28195883da4f904f399864f4221123da7376fb2f diff --git a/src/miner.cpp b/src/miner.cpp index 55e4fec..4c8c305 100644 --- a/src/miner.cpp +++ b/src/miner.cpp @@ -717,7 +717,7 @@ void ThreadStakeMiner(void* parg) // Create new coinstake transaction if (!pwallet->CreateCoinStake(LuckyInput.first, LuckyInput.second, solution.second, nBits, txCoinStake, key)) { - string strMessage = _("Warning: Unable to create coinstake transaction, see debug.log for the details. Mining thread has been stopped."); + string strMessage("Warning: Unable to create coinstake transaction, see debug.log for the details. Mining thread has been stopped."); strMiscWarning = strMessage; printf("*** %s\n", strMessage.c_str()); @@ -728,7 +728,7 @@ void ThreadStakeMiner(void* parg) auto pblock = CreateNewBlock(pwallet, &txCoinStake); if (!pblock) { - string strMessage = _("Warning: Unable to allocate memory for the new block object. Mining thread has been stopped."); + string strMessage("Warning: Unable to allocate memory for the new block object. Mining thread has been stopped."); strMiscWarning = strMessage; printf("*** %s\n", strMessage.c_str()); @@ -741,7 +741,7 @@ void ThreadStakeMiner(void* parg) // ... and sign it if (!key.Sign(pblock->GetHash(), pblock->vchBlockSig)) { - string strMessage = _("Warning: Proof-of-Stake miner is unable to sign the block (locked wallet?). Mining thread has been stopped."); + string strMessage("Warning: Proof-of-Stake miner is unable to sign the block (locked wallet?). Mining thread has been stopped."); strMiscWarning = strMessage; printf("*** %s\n", strMessage.c_str());