mirror of
https://github.com/xmrig/xmrig.git
synced 2024-12-22 19:49:36 +00:00
Update EthStratumClient.cpp
This commit is contained in:
parent
9864ba8696
commit
4edcaa03be
1 changed files with 4 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue