I have decided to look at solo mining as I have always used pools until now. I have made a bat file with this in it "cgminer.exe --scrypt -o 127.0.0.1:3344 -u username -p password -I 13 -w 256 -g 2 --gpu-reorder --thread-concurrency 8192 --gpu-engine 1060 --gpu-memclock 1500 --gpu-powertune 0 --temp-target 80 --auto-fan" That has been put with all my other bat files in the cgminer/vertminer folder.
Should that bat just be "cgminer.exe --scrypt -o 127.0.0.1:3344 -u username -p password" or are the other settings not a issue, or is that even right?
I have also made a .CONF file that is called gpucoin.CONF and that should be put in the appdata/roaming folder with the dat file I gather.
rpcuser=username
rpcpassword=password
server=1
daemon=1
addnode=70.161.219.122
addnode=91.125.248.210
addnode=69.8.51.75:6858
addnode=81.229.246.124:6858
addnode=99.28.127.102:64132
addnode=85.214.95.230:6858
gen=0
listen=0
port=3344
rpcport=3344
rpcallowip=*
rpcallowip=localhost
Is this correct?
Then if i get this right i just start the bat while the wallet is running and i should receive payments?
Any help is appreciated, thanks in advance.
YOu have specified rpcallowip=*
rpcallowip=localhost
twice.
Leave just 127.0.0.1
Settings in bat file are OK, of course, if you not speicfy them, it will take them from the config.
However, pool settings (in your case, solo), MUST be set from the bat file, not the config.
And dont forget to start the wallet as a server first. (command line, path to wallet, and add to this -server).
I assumed you needed the port number after the 127.0.0.1 guess i was wrong . I also assumed the server=1 line was for turning the wallet into the server. so much to learn it would seem. Thanks I'll try to get it working.