Skip to content

Commit

Permalink
Fix extra quotation marks in the command section (#13038)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
mdqst authored Dec 12, 2024
1 parent fbd369d commit 2fb7108
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/examples/single-process.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down

0 comments on commit 2fb7108

Please sign in to comment.