Skip to content

Commit cc07ed3

Browse files
authored
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.
1 parent 2b6797b commit cc07ed3

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

content/md/en/docs/quick-start/modify-the-runtime.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,12 +69,11 @@ To add the Utility pallet:
6969
For example, you should add a single line similar to the following.
7070

7171
```toml
72-
pallet-utility = { version = "4.0.0-dev", default-features = false, git = "https://github.com/paritytech/polkadot-sdk.git", branch = "polkadot-vX.Y.Z" }
72+
pallet-utility = { version = "4.0.0-dev", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-vX.Y.Z" }
7373
```
74-
7574
Be sure to replace `branch = "polkadot-vX.Y.Z"` with the Polkadot branch used for other pallets.
7675

77-
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.
76+
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`.
7877

7978
4. Locate the `[features]` section and add the Utility pallet to the list of default features for the standard binary.
8079

0 commit comments

Comments
 (0)