allow devnet rpc to listen on any vhost

geth's default value for `--rpcvhosts` is `localhost`, which does not work when trying to use the devnet in certain environments such as `docker-compose` or `gitlab-ci`
This commit is contained in:
nitper
2019-01-22 14:14:12 -05:00
committed by GitHub
parent 8d367a09fe
commit 744fa22f01

View File

@@ -15,6 +15,7 @@ mkdir -p /var/log
--rpc \
--rpcaddr '0.0.0.0' \
--rpcport 8501 \
--rpcvhosts '*' \
--rpcapi 'personal,db,eth,net,web3,txpool,miner,debug' \
--networkid 50 \
--gasprice '2000000000' \