Update Readme re http=false (#4550)

if you wish to separate node from rpcdaemon need to launch with -http=false or rpcdaemon will not launch as port occupied by erigon
This commit is contained in:
ValValu 2022-06-27 23:10:45 +12:00 committed by GitHub
parent f0fde26902
commit 4897f03cbd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -274,7 +274,7 @@ socket connection to pass data between them. To use this mode, run Erigon in one
```sh
make erigon
./build/bin/erigon --private.api.addr=localhost:9090
./build/bin/erigon --private.api.addr=localhost:9090 --http=false
make rpcdaemon
./build/bin/rpcdaemon --private.api.addr=localhost:9090 --http.api=eth,erigon,web3,net,debug,trace,txpool
```