@ bitcredits
Curious question.
This is the first coin that I have tried the set my config file with the rpcallowip=xxx.xxx.x.* but it will not allow it to work.
Am I missing something?
let me help you out:
rpcuser=a
rpcpassword=x
server=1
daemon=1
rpcport=1098
port=4036
rpcallowip=192.168.1.1
rpcallowip=127.0.0.1
listen=1
rpcthreads=64
set miner to localhost:1098 and you should be good to go, happy mining
In current bitcoin core you have to use CIDR notation:
http://www.sput.nl/internet/cidr-routing.htmlFor example
rpcallowip=192.168.1.0/24
allows range of 192.168.1.0 to 192.168.1.255
and
rpcallowip=0.0.0.0/0
allows any IP to connect.