mirror of
https://github.com/xmrig/xmrig.git
synced 2026-04-26 16:02:46 -04:00
Implemented cryptonight mining.
This commit is contained in:
@@ -39,8 +39,9 @@ xmrig::CudaLaunchData::CudaLaunchData(const Miner *miner, const Algorithm &algor
|
||||
|
||||
bool xmrig::CudaLaunchData::isEqual(const CudaLaunchData &other) const
|
||||
{
|
||||
return (other.algorithm == algorithm &&
|
||||
other.thread == thread);
|
||||
return (other.algorithm.family() == algorithm.family() &&
|
||||
other.algorithm.l3() == algorithm.l3() &&
|
||||
other.thread == thread);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user