Can someone help me setup a node to solo mine sha256? I'm on a pool now but have only received about %50 worth of the blocks i've found. I'll pay a 25k bounty.
I'm currently running an asic rig thats running cgminer on a raspberry pi. I've gathered from looking on reddit that I can create a node on another machine and then point my asic to it like i would for p2p pooling. Is this correct? How would I go about setting up a node?
Thanks!
You need a stratum. You could do what i did.
Install ubuntu or debian(desktop) Linux. You can easily run it on virtual machine (VMWare Workstation).
Download NOMP pool backend from git. Its open source.
Follow their instructions.
In MyriadCoin.conf:
rpcuser= ???
rpcpassword= ???
allowip=127.0.0.1
blocknotify=nodejshome/nomp/scripts/cli.js blocknotify myriadcoin %s
server=1
daemon=1
enableaccounts=1
rpcport=???
port=???
algo=scrypt - or sha256 on your case.
start your myriadcoin-qt or daemon.
start your nomp pool with
cd nomp
nodejs init.js
Point your miner to your linux virtualmachine IP and pool rpcport and happy mining!

* you may need to install redis-server and couple of other things for your server to run.