Skip to content

Commit 2fb7108

Browse files
authored
Fix extra quotation marks in the command section (erigontech#13038)
I noticed that there were extra quotation marks in the commands section, specifically after the `--chain=sepolia` and `--port=30304` options <img width="486" alt="Снимок экрана 2024-12-08 в 15 16 50" src="https://github.com/user-attachments/assets/c789e769-f371-4ec8-a015-c24dc119ba66"> 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.
1 parent fbd369d commit 2fb7108

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/examples/single-process.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ How to run Erigon in a single process (all parts of the system run as one).
88
2. Run erigon:
99
```
1010
./build/bin/erigon --datadir=/desired/path/to/datadir \
11-
--chain=sepolia" \
12-
--port=30304" \
11+
--chain=sepolia \
12+
--port=30304 \
1313
--http.port=8546 \
1414
--authrpc.port=8552 \
1515
--torrent.port=42068 \

0 commit comments

Comments
 (0)