#692 Add support for global algorithm variant.

This commit is contained in:
XMRig 2018-06-14 23:49:30 +07:00
parent 33d9094cdc
commit de6ee749fe
4 changed files with 16 additions and 11 deletions

View file

@ -123,7 +123,7 @@ bool xmrig::CommonConfig::finalize()
}
for (Pool &pool : m_pools) {
pool.adjust(m_algorithm.algo());
pool.adjust(m_algorithm);
if (pool.isValid() && pool.algorithm().isValid()) {
m_activePools.push_back(std::move(pool));