From cc07ed322840dec7df774b73194b13675f06967e Mon Sep 17 00:00:00 2001 From: Abdulaziz Kamil Date: Sun, 10 Dec 2023 20:46:03 +0100 Subject: [PATCH] Update modify-the-runtime.md Fixes a broken link that points to the `polkadot-sdk` repo for the `pallet-utility` while all other pallets used a version that is not in the polkadot-sdk repo. --- content/md/en/docs/quick-start/modify-the-runtime.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/content/md/en/docs/quick-start/modify-the-runtime.md b/content/md/en/docs/quick-start/modify-the-runtime.md index 7eec1e59e..a0f8af172 100644 --- a/content/md/en/docs/quick-start/modify-the-runtime.md +++ b/content/md/en/docs/quick-start/modify-the-runtime.md @@ -69,12 +69,11 @@ To add the Utility pallet: For example, you should add a single line similar to the following. ```toml - pallet-utility = { version = "4.0.0-dev", default-features = false, git = "https://github.com/paritytech/polkadot-sdk.git", branch = "polkadot-vX.Y.Z" } + pallet-utility = { version = "4.0.0-dev", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-vX.Y.Z" } ``` - Be sure to replace `branch = "polkadot-vX.Y.Z"` with the Polkadot branch used for other pallets. - You can copy any existing pallet dependency as a model to ensure that the branch setting for the `pallet-utility` dependency is the same as the branch setting for all other pallets. + You can copy any existing pallet dependency as a model to ensure that the branch setting for the `pallet-utility` dependency is the same as the branch setting for all other pallets. This walkthrough uses `branch = "polkadot-v0.9.42`. 4. Locate the `[features]` section and add the Utility pallet to the list of default features for the standard binary.