Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining
by
Aureum_Coffee
on 18/06/2017, 05:46:19 UTC
Just made some changes to oneBash to test out if Lyra2v2 can be mined.  It works.

Code:
COIN="LYRA2V2"

Code:
LYRA2V2_WORKER="nvOC"
LYRA2V2_ADDRESS="bitcoin.wallet.address"
LYRA2V2_POOL="stratum+tcp://lyra2v2.mine.zpool.ca:4533"


Implementation section.

Code:
if [ $COIN == "LYRA2V2" ]
then
HCD='/home/m1/SPccminer/ccminer'
ADDR="$LYRA2V2_ADDRESS.$LYRA2V2_WORKER"

until $HCD -a lyra2v2 -o $LYRA2V2_POOL -u $ADDR -p x
   do
   echo "FAILURE; reinit in 5" >&2
   sleep 5
done
fi

  This is currently working with the SPccminer within the nvOC.  Although I hope to see CCminer2.0 implemented soon.  Or is there a way to insert our own miner software such as Alexis78?