diff options
author | Péter Szilágyi <peterke@gmail.com> | 2018-03-09 17:06:18 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-09 17:06:18 +0800 |
commit | 307846d046d66c04ec9750c2219f7c93b53cb2c9 (patch) | |
tree | beeca656d2777a9fd4918803923d768c4c5eb2ea | |
parent | 38e2071df8fd93084539827bec404f206122fb63 (diff) | |
parent | 52697fb1b223dea099e26c1ec73f74c4f088b8c4 (diff) | |
download | go-tangerine-307846d046d66c04ec9750c2219f7c93b53cb2c9.tar.gz go-tangerine-307846d046d66c04ec9750c2219f7c93b53cb2c9.tar.zst go-tangerine-307846d046d66c04ec9750c2219f7c93b53cb2c9.zip |
Merge pull request #16287 from razum2um/master
Allow any vhost for wallet deployed by puppeth
-rw-r--r-- | cmd/puppeth/module_wallet.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/puppeth/module_wallet.go b/cmd/puppeth/module_wallet.go index 67f47c70e..5e5032bed 100644 --- a/cmd/puppeth/module_wallet.go +++ b/cmd/puppeth/module_wallet.go @@ -37,7 +37,7 @@ ADD genesis.json /genesis.json RUN \ echo 'node server.js &' > wallet.sh && \ echo 'geth --cache 512 init /genesis.json' >> wallet.sh && \ - echo $'geth --networkid {{.NetworkID}} --port {{.NodePort}} --bootnodes {{.Bootnodes}} --ethstats \'{{.Ethstats}}\' --cache=512 --rpc --rpcaddr=0.0.0.0 --rpccorsdomain "*"' >> wallet.sh + echo $'geth --networkid {{.NetworkID}} --port {{.NodePort}} --bootnodes {{.Bootnodes}} --ethstats \'{{.Ethstats}}\' --cache=512 --rpc --rpcaddr=0.0.0.0 --rpccorsdomain "*" --rpcvhosts "*"' >> wallet.sh RUN \ sed -i 's/PuppethNetworkID/{{.NetworkID}}/g' dist/js/etherwallet-master.js && \ |