1
I have installed bitcoin core on mac and accessed the config file from the preferences tab on the bitcoin-qt.
Now, I have started testnet on it by the below settings.
testnet=1
server=1
rpcuser=xxxxx
rpcpassword=xxxxxx
rpctimeout=30000
rpcport=8332
I was able to run it properly. so I thought of accessing the RPC from other systems, so I have assigned a public IP to it and in the config file, I have mentioned
rpcallowip=0.0.0.0
Now, I tried starting qt on my mac but unable to start it as it throws Invalid -rpcallowip subnet specification and I could not open the preferences tab and then open the configuration file.
I have tried to access the folder directly by going to the location '~/Library/Application Support/Bitcoin/' but there was no folder named Bitcoin in my mac.
Is there any other location, where it would be?
I have searched the entire system using bitcoin.conf but found no results.
can anyone help me on this?
1How did you put that config file (the top snippet) if there was non in that folder? The subnet specification might mean that you need to add a
/nsuffix to the IP, like0.0.0.0/0. This is useful to allow all on local network, like this192.168.0.0/24. – Steven Roose – 2017-10-03T12:53:11.5101Hello @StevenRoose : thanks for the reply. I've done it from bitcoin qt where there is an option to open configuration file from preferences tab. – RealSteel – 2017-10-04T04:08:49.193
Finally I found an answer using this comment here
– RealSteel – 2017-10-14T09:16:28.463