This is a bug T Nelson is good at finding..
Solomine in a testnet with low hashrate. Probobly a division by zero or something in the hashrate statistics.
Someone hook me up with a precise test case and I'll take a look. Full command line should do it. Yes, I'd rather mine for you than bother setting up accounts.
WALLET--
You would be solo-mining with your own VTC wallet. My wallet is not open to the web; lag would likely ruin the setup anyway.
My configuration file for a single GTX 960, saved as solo-vtc.conf:
{
"url" : "192.168.1.111:5888",
"user" : "yourname",
"pass" : "x",
"algo" : "lyra2v2",
"devices" : "0",
"intensity" : "19",
"cpu-priority" : 5,
"cpu-mining" : "true",
"api-bind" : "0"
}
My batch file, saved as "solo-vtc.bat":
:loop
ccminer.exe -c solo-vtc.conf
pause
goto loop
My Vertcoin wallet configuration file, saved as "vertcoin.conf" in ...appdata/roaming/vertcoin under the login user's name:
server=1
rpcuser=yourname
rpcpassword=x
rpcallowip=192.168.1.*
The example IP of the server in the miner's configuration file must match the LAN IP address of the computer with the VTC wallet. You don't need to assign a port in the wallet configuration file, "5888" is the default VTC RPC port. You must name the wallet configuration file "vertcoin.conf" for it to be found by default. This particular setup is for the VTC wallet computer, and the GTX 960 on the same computer. I ponted my other rigs in my LAN at this same computer with no problem in communications. Each rig crashed at least once.
--scryptr