Fix Readme (#1406)

* remove refs

* remove ref from yaml
This commit is contained in:
Nishant Das 2019-01-28 16:24:53 +08:00 committed by GitHub
parent 8d88394b28
commit a57659a43b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 7 deletions

View File

@ -87,7 +87,6 @@ With the binary executable:
./beacon-chain \
--datadir /path/to/your/datadir \
--rpc-port 4000 \
--simulator \
--demo-config \
--p2p-port 9000
```
@ -98,14 +97,11 @@ With bazel:
bazel run //beacon-chain --\
--datadir /path/to/your/datadir \
--rpc-port 4000 \
--simulator \
--demo-config \
--p2p-port 9000
```
We added a `--simulator` flag that simulates other nodes connected to you sending your node blocks for processing. Given this is a local development version and you'll only be running 1 validator client, this gives us a good idea of what the system will need to handle in the wild and will help advance the chain.
We also have a `--demo-config` flag that configures some internal parameters for you to run a local demo version of the system.
If you want to see what's happening in the system underneath the hood, add a `--verbosity debug` flag to show every single thing the beacon chain node does during its run time. If you want to rerun the beacon chain, delete and create a new data directory for the system to start from scratch.
@ -161,7 +157,6 @@ if you want to run multiple validator clients, **each one needs to have its own
```
docker run -p 4000:4000 -v gcr.io/prysmaticlabs/prysm/beacon-chain:latest \
--rpc-port 4000 \
--simulator \
--demo-config \
--p2p-port 9000
```
@ -189,7 +184,6 @@ The best way to run under Windows is to clone the repository and then run the no
go run ./beacon-chain main.go \
--datadir /path/to/your/datadir \
--rpc-port 4000 \
--simulator \
--demo-config \
--p2p-port 9000
```

View File

@ -27,7 +27,6 @@ spec:
- "--verbosity=debug"
- "--vrcaddr=$(VALIDATOR_REGISTRATION_CONTRACT_ADDRESS)"
- "--rpc-port=4000"
- "--simulator=false"
- "--monitoring-port=9090"
- "--bootstrap-node=/ip4/$(BOOTNODE_SERVICE_HOST)/tcp/$(BOOTNODE_SERVICE_PORT)/p2p/QmUWTsZwoJ51tey4fEE9EAqzQeHFHm4FE9aSfgTv8xyuG5"
- "--relay-node=/ip4/35.221.47.224/tcp/20000/p2p/QmXNZeGdHYshgwyYyJnYG7u5iQ1Hej5R9QshgEZ5NACc1x"