openvcash / vcash

A decentralized currency for the internet.
https://vcash.info
GNU Affero General Public License v3.0
36 stars 35 forks source link

How to set the rpc port&username for the vcash wallet?wane to run a pool #35

Closed chuanwc closed 6 years ago

chuanwc commented 6 years ago

I want to run a pool for vcash but don't konw how to set the rpc port&rpcusername for the deamon.any help?in the config.dat file seems there is no place to set the rpcuser&password and i also don't know how to set rpcallowip like anyother daemons.any idea?

bobfeldbauer commented 6 years ago

There is no authentication on the RPC, so be careful. User is: "user", password is blank. Port is 9195 but can be set in the config.dat. To allow specific IPs, run the daemon with "--rpc-allow-ips=x.x.x.x" like: ./Vcashd --rpc-allow-ips=10.0.0.1,10.0.0.2

chuanwc commented 6 years ago

thank you so much