From 828f2fbd3478d7dd24772daafc3b377bee1c320b Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Mon, 25 Jan 2021 15:21:21 +0100 Subject: [PATCH] fixs broken links in getting started pages --- docs/_getting-started/dev-mode.md | 2 +- docs/_getting-started/private-net.md | 5 +++-- docs/_interface/FAQ.md | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/_getting-started/dev-mode.md b/docs/_getting-started/dev-mode.md index 0ca39ccf5..46a49d3bf 100644 --- a/docs/_getting-started/dev-mode.md +++ b/docs/_getting-started/dev-mode.md @@ -22,7 +22,7 @@ You can specify a data directory to maintain state between runs using the `--dat mkdir test-chain-dir ``` -For this guide, start geth in dev mode, and enable [RPC](../_rpc/server.md) so you can connect other applications to geth. For this guide, we use Remix, the web-based Ethereum IDE, so also allow its domains to accept cross-origin requests. +For this guide, start geth in dev mode, and enable [RPC](../../_rpc/server.md) so you can connect other applications to geth. For this guide, we use Remix, the web-based Ethereum IDE, so also allow its domains to accept cross-origin requests. ```shell geth --datadir test-chain-dir --rpc --dev --rpccorsdomain "https://remix.ethereum.org,http://remix.ethereum.org" diff --git a/docs/_getting-started/private-net.md b/docs/_getting-started/private-net.md index b5e316f3b..3d26c3c7c 100644 --- a/docs/_getting-started/private-net.md +++ b/docs/_getting-started/private-net.md @@ -9,7 +9,7 @@ controlled ethereum network is useful as a backend for network integration testi developers working on issues related to networking/blockchain synching/message propagation, etc or DAPP developers testing multi-block and multi-user scenarios). -We assume you are able to build `geth` following the [build instructions](../docs/install-and-build/installing-geth) +We assume you are able to build `geth` following the [build instructions][build]. ## Setting up multiple nodes @@ -122,4 +122,5 @@ describes how you set up your own monitoring service for a (private or public) l cluster. [eth-stats]: https://ethstats.org -[monitoring]: ../doc/setting-up-monitoring-on-local-cluster +[monitoring]: ../../doc/setting-up-monitoring-on-local-cluster +[build]: ../../docs/install-and-build/installing-geth diff --git a/docs/_interface/FAQ.md b/docs/_interface/FAQ.md index 741827df1..691887f81 100644 --- a/docs/_interface/FAQ.md +++ b/docs/_interface/FAQ.md @@ -12,7 +12,7 @@ sort_key: C **Q.** I would like to run multiple geth instances but got the error "Fatal: blockchain db err: resource temporarily unavailable". -**A.** Geth uses a datadir to store the blockchain, accounts and some additional information. This directory cannot be shared between running instances. If you would like to run multiple instances follow [these](../getting-started/private-net) instructions. +**A.** Geth uses a datadir to store the blockchain, accounts and some additional information. This directory cannot be shared between running instances. If you would like to run multiple instances follow [these](getting-started/private-net) instructions. ---