From 2fb71083f1bc1ca35723139e46bc6a3a1fe268d5 Mon Sep 17 00:00:00 2001 From: Dmitry <98899785+mdqst@users.noreply.github.com> Date: Thu, 12 Dec 2024 08:18:10 +0300 Subject: [PATCH] Fix extra quotation marks in the command section (#13038) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I noticed that there were extra quotation marks in the commands section, specifically after the `--chain=sepolia` and `--port=30304` options Снимок экрана 2024-12-08 в 15 16 50 This caused a syntax issue when trying to execute the commands. The unnecessary quotation marks have been removed to ensure the commands work properly without errors. Here is the corrected version: ```bash --chain=sepolia \ --port=30304 \ ``` This change is important because it prevents syntax errors that could confuse users or lead to failed command executions. --- docs/examples/single-process.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/examples/single-process.md b/docs/examples/single-process.md index f271cb84cee..62f8bfe2f02 100644 --- a/docs/examples/single-process.md +++ b/docs/examples/single-process.md @@ -8,8 +8,8 @@ How to run Erigon in a single process (all parts of the system run as one). 2. Run erigon: ``` ./build/bin/erigon --datadir=/desired/path/to/datadir \ - --chain=sepolia" \ - --port=30304" \ + --chain=sepolia \ + --port=30304 \ --http.port=8546 \ --authrpc.port=8552 \ --torrent.port=42068 \