From ff211ab5ed47540c3370d4d01b5dd438d60a9a3a Mon Sep 17 00:00:00 2001 From: Radha <86818441+DrW3RK@users.noreply.github.com> Date: Fri, 8 Nov 2024 00:35:08 +0100 Subject: [PATCH 1/3] Minor fixes - Documentation --- docs/modules/ROOT/pages/guides/quick_start.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modules/ROOT/pages/guides/quick_start.adoc b/docs/modules/ROOT/pages/guides/quick_start.adoc index f629415d..7a4f0c82 100644 --- a/docs/modules/ROOT/pages/guides/quick_start.adoc +++ b/docs/modules/ROOT/pages/guides/quick_start.adoc @@ -19,7 +19,7 @@ cd generic-template cargo build --release ``` -* Receive some `PSO` from the link:https://paritytech.github.io/polkadot-testnet-faucet/[Paseo faucet] +* Receive some `PAS` from the link:https://paritytech.github.io/polkadot-testnet-faucet/[Paseo faucet] * Reserve a ParaId on Paseo: From 560a9aad9954426f0e2192475f07bca603e3652f Mon Sep 17 00:00:00 2001 From: Radha <86818441+DrW3RK@users.noreply.github.com> Date: Fri, 8 Nov 2024 00:51:04 +0100 Subject: [PATCH 2/3] Update quick_start.adoc --- docs/modules/ROOT/pages/guides/quick_start.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modules/ROOT/pages/guides/quick_start.adoc b/docs/modules/ROOT/pages/guides/quick_start.adoc index 7a4f0c82..7fd1f091 100644 --- a/docs/modules/ROOT/pages/guides/quick_start.adoc +++ b/docs/modules/ROOT/pages/guides/quick_start.adoc @@ -55,7 +55,7 @@ We use the `generic-template-node` executable throughout all the commands since ./target/release/generic-template-node build-spec --chain plain-parachain-chainspec.json --disable-default-bootnode --raw > raw-parachain-chainspec.json ``` -* Run two nodes and wait until it syncs with the Paseo relay chain. This can take a fairly long time(up to 2 days), so we can use the `fast-unsafe` flag to make the process faster since we are on a testnet(~ 3 hours). `fast` downloads the blocks without executing the transactions, and `unsafe` skips downloading the state proofs(which we are ok with since it is a testnet). +* Run two nodes and wait until it syncs with the Paseo relay chain. This can take a fairly long time (up to 2 days), so we can use the `fast-unsafe` flag to make the process faster since we are on a testnet(~ 3 hours). `fast` downloads the blocks without executing the transactions, and `unsafe` skips downloading the state proofs (which we are ok with since it is a testnet). + ```bash ./target/release/generic-template-node \ From e5639c27970e18c4ae3f683c13fac82c18ea8499 Mon Sep 17 00:00:00 2001 From: Radha <86818441+DrW3RK@users.noreply.github.com> Date: Sun, 10 Nov 2024 22:44:13 +0700 Subject: [PATCH 3/3] Update quick_start.adoc --- docs/modules/ROOT/pages/guides/quick_start.adoc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/modules/ROOT/pages/guides/quick_start.adoc b/docs/modules/ROOT/pages/guides/quick_start.adoc index 7fd1f091..20ade880 100644 --- a/docs/modules/ROOT/pages/guides/quick_start.adoc +++ b/docs/modules/ROOT/pages/guides/quick_start.adoc @@ -66,6 +66,7 @@ We use the `generic-template-node` executable throughout all the commands since --base-path \ --port 40333 \ --rpc-port 8844 \ + --unsafe-force-node-key-generation\ -- \ --execution wasm \ --chain \ @@ -83,6 +84,7 @@ We use the `generic-template-node` executable throughout all the commands since --base-path \ --port 40333 \ --rpc-port 8845 \ + --unsafe-force-node-key-generation\ -- \ --execution wasm \ --chain \