From 9cd76d29f0329734f8e1a4305fcc88341af06c30 Mon Sep 17 00:00:00 2001 From: Radha <86818441+DrW3RK@users.noreply.github.com> Date: Thu, 16 May 2024 13:44:53 +0200 Subject: [PATCH] Update index.adoc - fix chainspec generation command (#181) --disable-default-nodes does not exist --- docs/modules/ROOT/pages/index.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/modules/ROOT/pages/index.adoc b/docs/modules/ROOT/pages/index.adoc index 2749427..9f81616 100644 --- a/docs/modules/ROOT/pages/index.adoc +++ b/docs/modules/ROOT/pages/index.adoc @@ -33,7 +33,7 @@ cargo build --release ** Generate a plain chainspec with this command: + ```bash -./target/release/parachain-template-node build-spec --disable-default-nodes > plain-parachain-chainspec.json +./target/release/parachain-template-node build-spec --disable-default-bootnode > plain-parachain-chainspec.json ``` ** Edit the chainspec: @@ -116,4 +116,4 @@ cargo build --release - Read our general guides to understand more about the concepts of runtime development. // TODO: change if we have more runtimes, add a link to the runtime doc - Learn more about the runtime configuration. Currently, we have a single runtime template (generic one), and you can find documentation for it here. -- Explore the documentation for pallets. It may be useful if you are considering building a frontend for your parachain. \ No newline at end of file +- Explore the documentation for pallets. It may be useful if you are considering building a frontend for your parachain.