Update EthStratumClient.cpp

This commit is contained in:
SChernykh 2020-05-29 08:39:03 +02:00
parent 9864ba8696
commit 4edcaa03be

View file

@ -250,8 +250,10 @@ void EthStratumClient::parseNotification(const char* method, const rapidjson::Va
bool ok = true;
m_listener->onVerifyAlgorithm(this, algo, &ok);
if (!ok && !isQuiet()) {
LOG_ERR("[%s] incompatible/disabled algorithm \"%s\" detected, reconnect", url(), algo.shortName());
if (!ok) {
if (!isQuiet()) {
LOG_ERR("[%s] incompatible/disabled algorithm \"%s\" detected, reconnect", url(), algo.shortName());
}
disconnect();
return;
}