From a57659a43b8088d7fe88eab629e929b734125f6b Mon Sep 17 00:00:00 2001 From: Nishant Das Date: Mon, 28 Jan 2019 16:24:53 +0800 Subject: [PATCH] Fix Readme (#1406) * remove refs * remove ref from yaml --- README.md | 6 ------ k8s/beacon-chain/beacon-chain.deploy.yaml | 1 - 2 files changed, 7 deletions(-) diff --git a/README.md b/README.md index 94b5b5ea2d..fdff64959d 100644 --- a/README.md +++ b/README.md @@ -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 ``` diff --git a/k8s/beacon-chain/beacon-chain.deploy.yaml b/k8s/beacon-chain/beacon-chain.deploy.yaml index 6d9542fe76..ea81d3b4b1 100644 --- a/k8s/beacon-chain/beacon-chain.deploy.yaml +++ b/k8s/beacon-chain/beacon-chain.deploy.yaml @@ -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"