From da7e7fcc529729779fcb0f3584330c118e56e59a Mon Sep 17 00:00:00 2001 From: Sacha Saint-Leger Date: Tue, 10 Nov 2020 12:33:30 +0100 Subject: [PATCH] Update README.md remove infura, minor edits --- docker/dist/README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docker/dist/README.md b/docker/dist/README.md index a3489f476..27ebadebe 100644 --- a/docker/dist/README.md +++ b/docker/dist/README.md @@ -51,10 +51,10 @@ our setup guides: https://status-im.github.io/nimbus-eth2/eth1.html By default, the script will ask you to enter a web3 provider URL interactively, -but this can be supressed by specifying a `WEB3_URL` environment variable: +but this can be bypassed by specifying a websocket `WEB3_URL` environment variable: ```bash -WEB3_URL="wss://goerli.infura.io/ws/v3/" ./run-medalla-beacon-node.sh +WEB3_URL="" ./run-medalla-beacon-node.sh ``` ## Running a mainnet node @@ -65,7 +65,5 @@ All the same conventions apply: ```bash # using a local Geth instance WEB3_URL="ws://localhost:8545" ./run-mainnet-node.sh --max-peers=150 -# using Infura -WEB3_URL="wss://mainnet.infura.io/ws/v3/" ./run-mainnet-beacon-node.sh ```