Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC Community Edition 2.0 add ravencoin
by
terex
on 18/04/2018, 18:55:30 UTC
I am trying to mine Ravencoin, but I can't get it to work. This is what I added.

0miner:
Code:
  if [ $COIN == "RVN" ]
  then
    HCD='/home/m1/MSFTccminer/ccminer'
    ADDR="$RVN_ADDRESS.$RVN_WORKER"
    screen -dmSL miner $HCD -a x16r -o stratum+tcp://$RVN_POOL:$RVN_PORT -u $ADDR -p $MINER_PWD -i $RVN_INTENSITY
  fi

1bash:
Code:
RVN_WORKER="workername"
RVN_ADDRESS="Accountname"
RVN_POOL="rvn.suprnova.cc"
RVN_PORT="6667"
RVN_INTENSITY="21"

Remember to change your coin to RVN in 1bash -

This works on mine - switched a frame from ETH to RVN - compiled suprminer following papa's instructions for adding a new coin in 19.2-1

1bash
Code:
# RVN  ## No Need to add stratum+tcp:// to server address
RVN_WORKER="Rig$WORKERNAME"
RVN_ADDRESS="xxx"
RVN_POOL="rvn.suprnova.cc"
RVN_PORT="6667"
RVN_INTENSITY="0"

0miner

Code:
if [ $COIN == "RVN" ]
then
  HCD='/home/m1/suprminer/ccminer_miner'
  ADDR="$RVN_ADDRESS.$RVN_WORKER"
  echo "screen -dmSL miner $HCD -a x16r -o stratum+tcp://$RVN_POOL:$RVN_PORT -u $ADDR -p $MINER_PWD -i $RVN_INTENSITY"
  screen -dmSL miner $HCD -a x16r -o stratum+tcp://$RVN_POOL:$RVN_PORT -u $ADDR -p $MINER_PWD -i $RVN_INTENSITY
fi