From b2bd29584b773dc7bc4ab871378c227b4a455213 Mon Sep 17 00:00:00 2001 From: Bader Youssef Date: Wed, 18 Oct 2023 15:30:25 -0400 Subject: [PATCH] start of refinement --- docs/Parachain/beginner/section2/install-binary.md | 4 ++-- docs/Parachain/beginner/section2/running-chains.md | 6 ++---- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/docs/Parachain/beginner/section2/install-binary.md b/docs/Parachain/beginner/section2/install-binary.md index 3aac17a21..18db4952d 100644 --- a/docs/Parachain/beginner/section2/install-binary.md +++ b/docs/Parachain/beginner/section2/install-binary.md @@ -119,7 +119,7 @@ updated. Once you modify the chain spec, you can run the following command to ge ```bash # Run from locally compiled repository -./polkadot/target/release/polkadot build-spec > ./relaychain/relaychain_spec.json +./target/debug/polkadot build-spec > ./relaychain/relaychain_spec.json # or, with symlink polkadot build-spec > ./relaychain/relaychain_spec.json ``` @@ -128,7 +128,7 @@ Once this is built, also build the **raw**, SCALE-encoded file: ```bash # Run from locally compiled repository -./polkadot/target/release/polkadot build-spec \ +./target/debug/polkadot build-spec \ --chain ./relaychain/relaychain_spec.json \ --raw > ./relaychain/relaychain_spec_raw.json diff --git a/docs/Parachain/beginner/section2/running-chains.md b/docs/Parachain/beginner/section2/running-chains.md index e3516da53..f21a27a68 100644 --- a/docs/Parachain/beginner/section2/running-chains.md +++ b/docs/Parachain/beginner/section2/running-chains.md @@ -27,18 +27,16 @@ If you followed the steps to add a `symlink`, you may replace the preceded: - Launch Alice: ```bash - ./polkadot/target/release/polkadot \ + ./target/debug/polkadot \ --alice \ --validator \ --base-path /tmp/relay/alice \ --chain ./relaychain/relaychain_spec_raw.json \ - --port 30333 \ - --rpc-port 9944 \ --disable-worker-version-check ``` - Launch Bob: ```bash - ./polkadot/target/release/polkadot \ + ./target/debug/polkadot \ --bob \ --validator \ --base-path /tmp/relay/bob \