From 104afd4d329ebd0c933743609ae84b8e21a4090b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bernard=20Stojanovi=C4=87?= Date: Sun, 29 Oct 2023 00:00:39 +0200 Subject: [PATCH] fix: dependency git url On the Tutorial -> `Build a blockchain` -> `Authorize specific nodes` There is a wrong URL in the example for using a dependency https://docs.substrate.io/tutorials/build-a-blockchain/authorize-specific-nodes/#add-node-authorization-dependencies --- .../tutorials/build-a-blockchain/authorize-specific-nodes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/md/en/docs/tutorials/build-a-blockchain/authorize-specific-nodes.md b/content/md/en/docs/tutorials/build-a-blockchain/authorize-specific-nodes.md index 6e15808a8..415c63ec8 100644 --- a/content/md/en/docs/tutorials/build-a-blockchain/authorize-specific-nodes.md +++ b/content/md/en/docs/tutorials/build-a-blockchain/authorize-specific-nodes.md @@ -131,7 +131,7 @@ To add the `node-authorization` pallet to the Substrate runtime: ```toml [dependencies] - pallet-node-authorization = { default-features = false, version = "4.0.0-dev", git = "https://github.com/paritytech/polkadot-sdk.git", branch = "polkadot-v1.0.0" } + pallet-node-authorization = { default-features = false, version = "4.0.0-dev", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v1.0.0" } ``` This line imports the `pallet-node-authorization` crate as a dependency and specifies the following configuration details for the crate: