Skip to content

Commit

Permalink
start of refinement
Browse files Browse the repository at this point in the history
  • Loading branch information
CrackTheCode016 committed Oct 18, 2023
1 parent ba9449f commit b2bd295
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/Parachain/beginner/section2/install-binary.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand All @@ -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
Expand Down
6 changes: 2 additions & 4 deletions docs/Parachain/beginner/section2/running-chains.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down

0 comments on commit b2bd295

Please sign in to comment.