Miner: fixed thread 0 always mining with secure JIT (worse performance)

This commit is contained in:
SChernykh
2026-06-08 19:36:30 +02:00
parent 8a1de602f0
commit 0859397f21
+2 -1
View File
@@ -578,7 +578,8 @@ namespace cryptonote
if ((b.major_version >= RX_BLOCK_VERSION) && !rx_set)
{
crypto::rx_set_miner_thread(th_local_index, tools::get_max_concurrency());
// Must be non-zero value because 0 means "not a miner thread, run with secure JIT" in rx-slow-hash.c
crypto::rx_set_miner_thread(th_local_index + 1, tools::get_max_concurrency());
rx_set = true;
}