Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0019
by
damNmad
on 21/09/2017, 14:06:19 UTC
Is it possible to mine DUAL ETH+DCR with nvOC_V0019 on NiceHash. I mean to receive BTC instead of eth/dcr.

If yes, can someone help me how to set up oneBash?

Thx!

Yes you can, that is coming in the upcoming update.

It goes like this:

Coin Name :
Code:
COIN="DUAL_NICEHASH"

Coin Details:

Please change the region according to your location; added it as usa but it can be eu or something else
You can also edit the dcri according to your requirements

Code:
DUAL_WORKER="$WORKERNAME"
DUAL_BTC_ADDRESS=$BTC_ADDRESS
DUAL_ETHASH_POOL="stratum+tcp://daggerhashimoto.usa.nicehash.com:3353"
DUAL_DCR_POOL="stratum+tcp://decred.usa.nicehash.com:3354"
DUAL_EXTENSION_ARGUMENTS="-dcoin dcr -dcri 40 -esm 3 -allpools 1 -allcoins 1 -estale 0 -dbg -1"

Add this in 3main at appropriate place

Code:
if [ $COIN == "DUAL_NICEHASH" ]
then

if [ $CLAYMORE_VERSION == "10_0" ]
then
HCD='/home/m1/eth/10_0/ethdcrminer64'
fi

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

ETHASH_ADDR="$DUAL_BTC_ADDRESS.$DUAL_WORKER"
DCR_ADDR="$DUAL_BTC_ADDRESS.$DUAL_WORKER"

screen -dmS miner $HCD -epool $DUAL_ETHASH_POOL -ewal $ETHASH_ADDR -epsw x -allcoins 1 -allpools 1 -dpool $DUAL_DCR_POOL -dwal $DCR_ADDR -dpsw x $DUAL_EXTENSION_ARGUMENTS

if [ $LOCALorREMOTE == "LOCAL" ]
then
screen -r miner
fi

BITCOIN="theGROUND"

while [ $BITCOIN == "theGROUND" ]
do
sleep 60
done
fi

Let me know if it works or not and ask me if you have any questions Smiley