Closed UselessGuru closed 1 year ago
I see you're mining CLORE? If so, instead of --algorithm ravencoin
set --algorithm clore
and the miner won't be rebuilding the DAG.
and the miner won't be rebuilding the DAG
Thank you for the suggestion. I see, but that is a bit cumbersome, because this requires adding an extra translation table in NemosMiner (and als RainbowMiner) miner PS files.
RainbowMiner includes this in the miner file to get around the issue:
if ($MainAlgorithm_0 -eq "ravencoin") {
if ($Pools.$MainAlgorithm_Norm_0.CoinSymbol -eq "CLORE") {$MainAlgorithm_0 = "clore"}
elseif ($Pools.$MainAlgorithm_Norm_0.CoinSymbol -eq "NEOX") {$MainAlgorithm_0 = "neoxa"}
elseif ($Pools.$MainAlgorithm_Norm_0.CoinSymbol -eq "XNA") {$MainAlgorithm_0 = "neurai"}
elseif ($Pools.$MainAlgorithm_Norm_0.CoinSymbol -ne "RVN") {$MainAlgorithm_0 = "neurai"}
}
I would prefer not to include such a table. This is why I am setting '--algorithm ravencoin' and also the mining coin 'mc=****'.
And what about coins that rigel does not support yet, e.g. PAPRY or SATOX?
And how does the DAG switch work for EGAM / ESN / EXP / ETHW?
See the conversation here https://github.com/rigelminer/rigel/issues/92 and here https://github.com/rigelminer/rigel/issues/95, they are all about the same thing. I'm going to close this one to avoid duplication.
Duplicate of https://github.com/rigelminer/rigel/issues/92
Rigel-v1.9.1\Rigel.exe --algorithm ravencoin --url [1]stratum+ssl://kawpow.eu.mine.zergpool.com:13638 --username [1]****************************--password [1]c=BTC,mc=CLORE,ID=****************,pl=0 --worker [1]Blackbox --no-strict-ssl --api-bind 127.0.0.1:4005 --no-watchdog --devices 1
Mining works fine with no switching until dev mining kicks in and attempts to allocate memory for a larger DAG. I see 3 possible solutions: a) Use a low mem coin/pool combo for DEV mining that fits in memory b) suspend mining instead of attemting to swich DAG, and resume when dev mining time is over c) no DEV mining if available memory does not allow dev mining DAG switch