File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
tutorials/polkadot-sdk/parachains/zero-to-hero Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -26750,7 +26750,7 @@ This tutorial requires two essential tools:
2675026750 Install it by executing the following command:
2675126751
2675226752 ```bash
26753- cargo install staging-chain-spec-builder@{{dependencies.crates.chain_spec_builder.version}}
26753+ cargo install --locked staging-chain-spec-builder@{{dependencies.crates.chain_spec_builder.version}}
2675426754 ```
2675526755
2675626756 This installs the `chain-spec-builder` binary.
@@ -26760,7 +26760,7 @@ This tutorial requires two essential tools:
2676026760 To install it, run the following command:
2676126761
2676226762 ```bash
26763- cargo install polkadot-omni-node@{{dependencies.crates.polkadot_omni_node.version}}
26763+ cargo install --locked polkadot-omni-node@{{dependencies.crates.polkadot_omni_node.version}}
2676426764 ```
2676526765
2676626766 This installs the `polkadot-omni-node` binary.
@@ -26781,7 +26781,7 @@ The [Polkadot SDK Parachain Template](https://github.com/paritytech/polkadot-sdk
2678126781
26782267823. Compile the runtime:
2678326783 ```bash
26784- cargo build --release
26784+ cargo build --release --locked
2678526785 ```
2678626786
2678726787 !!!tip
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ This tutorial requires two essential tools:
3838 Install it by executing the following command:
3939
4040 ``` bash
41- cargo install staging-chain-spec-builder@{{dependencies.crates.chain_spec_builder.version}}
41+ cargo install --locked staging-chain-spec-builder@{{dependencies.crates.chain_spec_builder.version}}
4242 ```
4343
4444 This installs the ` chain-spec-builder` binary.
@@ -48,7 +48,7 @@ This tutorial requires two essential tools:
4848 To install it, run the following command:
4949
5050 ` ` ` bash
51- cargo install polkadot-omni-node@{{dependencies.crates.polkadot_omni_node.version}}
51+ cargo install --locked polkadot-omni-node@{{dependencies.crates.polkadot_omni_node.version}}
5252 ` ` `
5353
5454 This installs the ` polkadot-omni-node` binary.
@@ -69,7 +69,7 @@ The [Polkadot SDK Parachain Template](https://github.com/paritytech/polkadot-sdk
6969
70703. Compile the runtime:
7171 ` ` ` bash
72- cargo build --release
72+ cargo build --release --locked
7373 ` ` `
7474
7575 !!! tip
You can’t perform that action at this time.
0 commit comments