diff --git a/docs/modules/ROOT/pages/guides/quick_start.adoc b/docs/modules/ROOT/pages/guides/quick_start.adoc index f629415d..20ade880 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: @@ -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 \ @@ -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 \