I didn't any change in 1bash just change coin to dual_eth_dcr other code in 1bash is from nvoc 19. I made worker in dcr.suprnova.cc with user and pass i think should set my password from worker i made in pool to 1bash!
Ok, I know that you haven't changed a thing in 1bash.
We've been on version 19 from past 8 months, we had 6 sub versions under 19, I don't know which version you using.
NOPE!
Setting your password doesn't just let you mine, I would suggest you to set your worker password to 'x' on suprnova dashboard. (no one can access your coins with this password, keep the actual login password safe)
I need two things from you, to help you further...
1) I've asked you to paste the DCR details from 1bash because, i want to know how you set it up, need to correct them if there is any mistake.
2) I don't know which sub version you are using, so
a. I would suggest you to look for 0miner file in home folder, if you can find it then search for 'DUAL_ETH_DCR' and paste that code over here.
b. If you unable to find 0miner file, then look for 3main file and search for the same 'DUAL_ETH_DCR' and get those lines here.
I can help you in minutes once I have the above information.
PS : Every pool uses different approach, account based and address based are different.
thanks for your help
search for 0miner but i cant find it.i found 3main and this code
if [ $COIN == "DUAL_ETH_DCR" ]
then
if [ $CLAYMORE_VERSION == "9_8" ]
then
HCD='/home/m1/eth/9_8/ethdcrminer64'
fi
if [ $CLAYMORE_VERSION == "9_7" ]
then
HCD='/home/m1/eth/9_7/ethdcrminer64'
fi
if [ $CLAYMORE_VERSION == "9_5" ]
then
HCD='/home/m1/eth/9_5/ethdcrminer64'
fi
if [ $CLAYMORE_VERSION == "9_4" ]
then
HCD='/home/m1/eth/9_4/ethdcrminer64'
fi
if [ $CLAYMORE_VERSION == "8_0" ]
then
HCD='/home/m1/eth/8_0/ethdcrminer64'
fi
ETHADDR="$ETH_ADDRESS/$ETH_WORKER"
if [ $DOT_POOL_FORMAT_or_FORWARD_SLASH_POOL_FORMAT == "DOT" ]
then
ETHADDR="$ETH_ADDRESS.$ETH_WORKER"
fi
DADDR="$DCR_ADDRESS.$DCR_WORKER"
screen -dmS miner $HCD -epool $ETH_POOL -ewal $ETHADDR -epsw x -dpool $DCR_POOL -dwal $DADDR -dpsw x -dbg -1 $ETH_EXTENSION_ARGUMENTS
if [ $LOCALorREMOTE == "LOCAL" ]
then
screen -r miner
fi
BITCOIN="theGROUND"
while [ $BITCOIN == "theGROUND" ]
do
sleep 60
done
fi
Thanks bruv, you should've posted the DCR coin details from 1bash as well, anyway, by looking at the above code seems normal to me, so i will post the solutions below.
Not sure what sort of pool you are using for ETH, but if it is account based pool like suprnova then, check/change the below option
$DOT_POOL_FORMAT_or_FORWARD_SLASH_POOL_FORMAT == "DOT"
Add the extension arguments and make sure about the format;
ETH_WORKER="workerName"
ETH_ADDRESS="loginName"
ETH_POOL="poolAddress"
ETH_EXTENSION_ARGUMENTS="-allpools 1" # add any additional claymore arguments desired here
If you are using non account based pools like nanopool or dwarfpool then don't touch change the below variable :
$DOT_POOL_FORMAT_or_FORWARD_SLASH_POOL_FORMAT
Add the extension arguments and make sure about the format;
ETH_WORKER=$WORKERNAME
ETH_ADDRESS="yourWalletAddress"
ETH_POOL="poolAddress"
ETH_EXTENSION_ARGUMENTS="-allpools 1" # add any additional claymore arguments desired here
Must change the DCR settings according to the below format, if you are dual mining.
DCR_WORKER="workerName"
DCR_ADDRESS="joviSupra"
DCR_POOL="dcr.suprnova.cc:3252" (guess this is what you are using??)
Try the above options and let me know how it goes, if you still see authentication error, just go to guake
ps aux | grep miner
type this and pass the result to me; i will try to help you based on that.