Hi Guys
Pap your WTM switch is not switching after the clean setup from the self expanding image. Script is running and tells me i switch from bla to bla but nothing happens in the miner window.
Any ideas?
greetings
I think i found the problem
if [[ $ALGO_SPECIFIC_OC == "NO" && $plusCPU == "NO" ]] || [[ $ALGO_SPECIFIC_OC == "YES" && $CURRENT_COIN_ALGORITHM == $TOP_COIN_ALGORITHM ]]; then
elif [[ $ALGO_SPECIFIC_OC == "YES" && $CURRENT_COIN_ALGORITHM != $TOP_COIN_ALGORITHM ]]; then
I use $plusCPU but not $ALGO_SPECIFIC_OC. So there is no way the Switch can work.
Sorry
I had fixed that in my local update folder and GitHub, but forgot to make the change in compressed file for update script and image.
Remove the plusCPU and change it to
if [[ $ALGO_SPECIFIC_OC == "NO" ]] || [[ $ALGO_SPECIFIC_OC == "YES" && $CURRENT_COIN_ALGORITHM == $TOP_COIN_ALGORITHM ]]; then
Fixed update script too.
Thanks for mentioning the problem.