Is there any chance i can get a look at a solo mine config file so I can try and solo for fun experiment?
I'm still trying to get an old ant miner to mine on my networ to the wallet on a pc on same network. I have tried lots of config files. just cant seem to conect. It has been a year or more the last time i wrote a config for doing this and i know it something simple that im overlooking? This is my file
rpcuser=GoodGryphon
rpcport=39438
rpcpassword=x
rpcallowip=127.0.0.1
rpcallowip=192.168.1.99
rpcconnect=192.168.1.146
server=1
listen=1
daemon=1
port=39437
gen=1
I'm basing this on what I've found to work solomining other coins using ccminer (your mining software might have a slightly different "batch" input string)...
You'll need to spawn an address for your wallet where you'll want newly mined coins to be generated then put that in as your rpcpassword in your config file. BTW, your rpcuser and rpcpassword should be private so I suggest you not use the rpcuser name that you just broadcasted.
It's somewhat counterintuitive but I've found I can set gen to 0 (perhaps this was the problem?). Maybe gen=1 is a legacy from coins that hash within the wallet, but your mining software is talking with your wallet as an external process.
I think you want to set mining to 1.
The rpcconnect doesn't seem to be necessary from what I've seen -- maybe try without it.
Also, it's probably obvious but you should be running a node at the same time (have CROC synced with the network to transmit your newly solved blocks).
Another security thing... after making changes it's best to have your config file read-only (and only accessible by your user account if you can set the permissions).
So your config should look essentially like this:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
rpcuser=yourNewUserName
rpcpassword=OneOfYourCrocAddresses
rpcallowip=127.0.0.1 # this is your computer's "localhost" IP
rpcport=39438 # listen for RPC connections on this port
port=39437 # port on other nodes to connect to
server=1 # tells CrocodileCash.conf to accept JSON-RPC commands
gen=0 # the counter-intuitive part mentioned above
daemon=1 # allow command-line terminal calls
mining=1 # attempting to solo-mine
listen=1 # allow other nodes to transmit your IP to nodes they're connected to
addnode=101.165.225.41
addnode=174.92.179.126
addnode=139.59.228.94
addnode=75.130.162.248
addnode=177.33.1.40
addnode=192.169.6.218
addnode=68.105.33.92
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The batch file input to your miner would look something like this:
cgminer/bfgminer -a sha256 -o
http://127.0.0.1:39438 -u yourNewUserName -p TheCrocAddressThatIsYourRPC_Password --any_other_settings_specific_to_your_hardware/software (power, intensity, temperature, difficulty etc)
I hope that helps you mine some CROC.