Remove retries on getBlockTemplate to fix pool flooding with calls

This commit is contained in:
miketout
2018-10-21 14:54:19 -07:00
parent e871bb78ad
commit d82a969a58
3 changed files with 8 additions and 3 deletions

View File

@@ -43,8 +43,8 @@ void EnforceNodeDeprecation(int nHeight, bool forceLogging, bool fThread) {
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 Verus.");
LogPrintf("*** %s\n", msg);
CAlert::Notify(msg, fThread);
uiInterface.ThreadSafeMessageBox(msg, "", CClientUIInterface::MSG_WARNING);
}
LogPrintf("*** %s\n", msg);
CAlert::Notify(msg, fThread);
uiInterface.ThreadSafeMessageBox(msg, "", CClientUIInterface::MSG_WARNING);
}