This repository was archived by the owner on Apr 24, 2022. It is now read-only.
File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -281,14 +281,14 @@ class Miner: public Worker
281
281
unsigned tstop = farm.get_tstop ();
282
282
if (tstop && temperature >= tstop)
283
283
{
284
- cwarn << " Pause mining on gpu" << index << " : temperature " << temperature << " is above --tstop " << tstop;
284
+ cwarn << " Pause mining on gpu" << index << " : temperature " << temperature << " is equal/ above --tstop " << tstop;
285
285
m_mining_paused.set_mining_paused (MinigPauseReason::MINING_PAUSED_WAIT_FOR_T_START);
286
286
}
287
287
} else {
288
288
unsigned tstart = farm.get_tstart ();
289
289
if (tstart && temperature <= tstart)
290
290
{
291
- cnote << " (Re)starting mining on gpu" << index << " : temperature " << temperature << " is now below --tstart " << tstart;
291
+ cnote << " (Re)starting mining on gpu" << index << " : temperature " << temperature << " is now below/equal --tstart " << tstart;
292
292
m_mining_paused.clear_mining_paused (MinigPauseReason::MINING_PAUSED_WAIT_FOR_T_START);
293
293
}
294
294
}
Original file line number Diff line number Diff line change @@ -1008,7 +1008,7 @@ void EthStratumClient::response_timeout_handler(const boost::system::error_code&
1008
1008
if (!ec) {
1009
1009
if (isConnected () && m_response_pending) {
1010
1010
dev::setThreadName (" stratum" );
1011
- cwarn << " No response received in" << m_responsetimeout << " seconds." ;
1011
+ cwarn << " No response received in " << m_responsetimeout << " seconds." ;
1012
1012
disconnect ();
1013
1013
}
1014
1014
}
You can’t perform that action at this time.
0 commit comments