-
Notifications
You must be signed in to change notification settings - Fork 47
Solo mining
To solo-mine with Nevermore, you'll have to enable RPC server on your Raven wallet. To do so, open up your raven.conf
file (or make one if it doesn't exist). This is located in %APPDATA%/raven/raven.conf
on Windows and ~/.raven/raven.conf
on Linux.
rpcuser=user
rpcpassword=password
rpcallowip=127.0.0.1
rpcport=3333
server=1
listen=1
daemon=1
gen=0
Feel free to change the user, password, and port. If you do so, make sure to change it in the bat file below too.
Now, you'll have to modify your .bat
or .sh
file to connect to the wallet, and give it the receive wallet address for any mined blocks. You can do so as follows:
ccminer -a x16r -o http://127.0.0.1:3333 -u user \
-p password --coinbase-addr=[wallet address] -i 19
Start the bat file, and check that Nevermore is receiving work. Unlike pool mining, you won't get any shares, but when you mine a block, it will show up as a "share" (...yes!
), and you'll receive immediately the mining reward in the wallet address you provided. Mined blocks will take 100 blocks to confirm and be spendable.