From 19185bc59a2d991f7ddd04a237699618d8af7859 Mon Sep 17 00:00:00 2001 From: TheFirstNomad <119462780+TheFirstNomad@users.noreply.github.com> Date: Fri, 17 Apr 2026 02:19:18 +0300 Subject: [PATCH 1/3] docs: clarify Rust install step for new users Small note to help non-devs avoid the common "cargo: command not found" issue after rustup. --- docs/installation.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/installation.md b/docs/installation.md index ff4a5bd..a4fbfa9 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -79,6 +79,7 @@ If not, it can be installed with the following commands: ```sh curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh source ~/.cargo/env +# Restart your terminal (or run `source ~/.cargo/env` again) so the `cargo` command is available. ``` With Rust installed, install the dependencies for your operating system: From 96d00f398705b5809d3e21f6a49b997867155011 Mon Sep 17 00:00:00 2001 From: TheFirstNomad <119462780+TheFirstNomad@users.noreply.github.com> Date: Fri, 24 Apr 2026 22:13:08 +0300 Subject: [PATCH 2/3] docs: fix broken installation link in running guide Re-submitting after main branch update (original PR #36) From 0deb7f6a24d676a5737f8178912555af86da5c13 Mon Sep 17 00:00:00 2001 From: TheFirstNomad <119462780+TheFirstNomad@users.noreply.github.com> Date: Fri, 24 Apr 2026 23:33:07 +0300 Subject: [PATCH 3/3] docs: add real-time journalctl log commands in Verify operation section Adds helpful real-time log commands so new users can easily debug when block height stays at 0x0. --- docs/running-an-arc-node.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/running-an-arc-node.md b/docs/running-an-arc-node.md index 0a20af6..6f45e7d 100644 --- a/docs/running-an-arc-node.md +++ b/docs/running-an-arc-node.md @@ -198,6 +198,15 @@ The `result` field represents the next block height, in hexadecimal It should increase over time. If it remains `0x0`, check the logs of the consensus layer for errors. +For real-time logs, run these commands in separate terminals: + +```sh +# Consensus layer logs (most useful for sync issues) +sudo journalctl -u arc-consensus -f + +# Execution layer logs +sudo journalctl -u arc-execution -f + > Notice that this command queries the execution layer's HTTP server offering > a local JSON-RPC API. > If the address and port of the HTTP endpoint are configured differently than