From a508c6058754981cc649941d979e8f1e977dbd44 Mon Sep 17 00:00:00 2001 From: Waclaw Date: Wed, 1 Apr 2026 04:59:43 -0400 Subject: [PATCH] fix: correct standalone sequencer command to use config file path The standalone mode command was missing the '--' separator and the full config file path. Changed from directory path to the complete config file path: sequencer/service/configs/debug/sequencer_config.json --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a08b81fb..ecd4a912 100644 --- a/README.md +++ b/README.md @@ -220,7 +220,7 @@ This will use a wallet binary built from this repo and not the one installed in ### Standalone mode The sequencer can be run in standalone mode with: ```bash -RUST_LOG=info cargo run --features standalone -p sequencer_service sequencer/service/configs/debug +RUST_LOG=info cargo run --features standalone -p sequencer_service -- sequencer/service/configs/debug/sequencer_config.json ``` ## Running with Docker