-
Notifications
You must be signed in to change notification settings - Fork 284
Description
Is there an existing issue?
- I have searched the existing issues
Experiencing problems? Have you tried our Stack Exchange first?
- This is not a support question.
Bug report for compiling, code snippets, templates, etc.
I am not sure what the status of the tutorials are, the node-template is based no now archived paritytech/substrate repo.
In this particular tutorial the following dependency is introduced:
pallet-node-authorization = { default-features = false, version = "4.0.0-dev", git = "https://github.com/paritytech/polkadot-sdk.git", branch = "polkadot-v1.0.0" }
this dependency, unlike the rest, points to the new SDK, however, it is broken, the branch does not exists, and using a similar branch in the repository will still make this dependency fail.
however, Pointing to:
pallet-node-authorization = { default-features = false, version = "4.0.0-dev", git = "https://github.com/paritytech/polkadot-sdk.git", branch = "polkadot-v1.0.0" }
seems to fix the issue, however, again, the dependency comes from an archived repo, like the rest.
Steps to reproduce the problem
add the dependency to the runtime as instructed, compilation fails.