You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Depending on your use case you might want to turn off your internet connection to not allow further incoming connections on your Geth instance in case the EthereumJS connection gets disconnected.
378
+
379
+
##### Local Connection: Geth <- EthereumJS
380
+
381
+
Start your Geth instance:
382
+
383
+
```shell
384
+
geth [--syncmode=full] [--verbosity=5]
385
+
```
386
+
387
+
Note that you might want to turn off your internet connection to limit on the Geth discovery process (setting the `--nodiscover` flag won't work since this also disallows our local client from connecting).
388
+
389
+
Then connect with your EthereumJS instance via:
390
+
391
+
```shell
392
+
DEBUG=devp2p:* npm run client:start:dev2 -- --bootnodes=enode://[GETH_NODE_ID]@127.0.0.1:30303
393
+
```
394
+
340
395
### Diagram Updates
341
396
342
397
To update the structure diagram files in the root folder open the `client.drawio` file in [draw.io](https://draw.io/), make your changes, and open a PR with the updated files. Export `svg` and `png` with `border``width=20` and `transparency=false`. For `png` go to "Advanced" and select `300 DPI`.
0 commit comments