From b55f6b7edeacca4dd90f2347b4e92f8caa556d4d Mon Sep 17 00:00:00 2001 From: Vinay Kharayat Date: Thu, 12 Sep 2024 17:54:14 +0530 Subject: [PATCH] Changed polkadot sdk repo to substrate as nicks pallet is removed from polkadot sdk --- .../en/docs/tutorials/build-application-logic/add-a-pallet.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/md/en/docs/tutorials/build-application-logic/add-a-pallet.md b/content/md/en/docs/tutorials/build-application-logic/add-a-pallet.md index a920de241..95d0467de 100644 --- a/content/md/en/docs/tutorials/build-application-logic/add-a-pallet.md +++ b/content/md/en/docs/tutorials/build-application-logic/add-a-pallet.md @@ -72,7 +72,7 @@ To add the dependencies for the Nicks pallet to the runtime: For example, add a line similar to the following: ```toml - pallet-nicks = { version = "4.0.0-dev", default-features = false, git = "https://github.com/paritytech/polkadot-sdk.git", branch = "polkadot-v1.0.0" } + pallet-nicks = { version = "4.0.0-dev", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v1.0.0" } ``` This line imports the `pallet-nicks` crate as a dependency and specifies the following: