Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Pigeoncoin (PGN) – a cryptocurrency network with a new X16S (shuffle) algo
by
micutzu
on 08/05/2018, 05:22:24 UTC
Hello,

I`m trying to solo mine with gpu!
This is my conf file :

rpcuser=username
rpcpassword=pass
rpcallowip=127.0.0.1
rpcport=8757
server=1
listen=1

And this is the bat file : ccminer -a x16s -o http://127.0.0.1:3333 -u username -p pass

But i can`t make it run ... what i`m doing wrong?!

Thanks

Hi,

You made a little and easy to overlook mistake in your .bat file. The "3333" part does not match with the value for "rpcport=8757" in your .conf file.

Just change your .bat file to this and you should be set!

Code:
ccminer -a x16s -o http://127.0.0.1:8757 -u username -p pass



dosen`t work ... i get "empty data received in json_rpc_call get_work failed!  Undecided Undecided

OK, now here's some things you should check off the top of my head:

  • Is your firewall or anti-virus software allowing access to the port 8757 in your computer?
  • Is your miner updated to the latest version? (I'd recommend Suprminer for Nvidia cards https://github.com/ocminer/suprminer/releases/tag/1.5)
  • Have you restarted the wallet after saving those settings in your .conf file and let it sync before executing the .bat file?


If you've checked all these steps and are still unable to solo mine, try to add --no-gbt and --no-stratum to your .bat file, restart the wallet, and run the .bat file again.

So now your .bat file should look like this:

Code:
ccminer -a x16s --no-gbt --no-stratum -o http://127.0.0.1:8757 -u username -p pass


Hope this solves your problem!

The firewall is disabled ... the walled was restarted after the config file was saved. I`ve tried this

Code:
ccminer -a x16s --no-gbt --no-stratum -o http://127.0.0.1:8757 -u username -p pass

but still dosen`t work!