Hey
It seems i have a weird issue ...
When using 3main to ETH it seems that launching autotemp control ...
When i choice another based on ETHASH everything is working fine ...
As example my 3main file working for ATH but not for ETH, 3main don't even launch the miner.
3main sample :
if [ $COIN == "ATH" ]
then
HCD='/home/m1/eth/ethminer_12dev2/ethminer'
ATHADDR="$ATH_ADDRESS.$ATH_WORKER"
fi
screen -dmSL miner $HCD --farm-recheck 200 -U -S $ATH_POOL -SP 1 -O $ATHADDR
if [ $LOCALorREMOTE == "LOCAL" ]
then
screen -r miner
fi
if [ $LOCALorREMOTE == "LOCAL" ]
then
screen -r miner
fi
BITCOIN="theGROUND"
while [ $BITCOIN == "theGROUND" ]
do
sleep 60
done
fi
if [ $COIN == "ETH" ]
then
HCD='/home/m1/eth/ethminer_12dev2/ethminer'
ETHADDR="$ETH_ADDRESS/$ETH_WORKER"
fi
screen -dmSL miner $HCD -S $ETH_POOL -O $ETHADDR:x -U
if [ $LOCALorREMOTE == "LOCAL" ]
then
screen -r miner
fi
BITCOIN="theGROUND"
while [ $BITCOIN == "theGROUND" ]
do
sleep 60
done
fi
Here is my 1bash extract :
ETH_WORKER="$WORKERNAME"
ETH_ADDRESS="MyAddress"
ETH_POOL="eth-eu1.nanopool.org:9999"
ATH_WORKER="$WORKERNAME"
ATH_ADDRESS="MyAddress"
ATH_POOL="geo.pool.atheios.eu:8001"
So really weird when i select ATH everything is working fine miner launch etc ... When i select ETH instant of miner launch on screen -x miner, i get another temp control session ...
I think i finally have to go on the new version