-
Notifications
You must be signed in to change notification settings - Fork 97
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add kusama and polkadot SP constants #115
Add kusama and polkadot SP constants #115
Conversation
These should be imported from parachains_common directly, not through the runtimes.
Co-authored-by: Oliver Tale-Yazdi <[email protected]>
@Bullrich the bot is not picking up the approvals here. |
Has something changed in the identity pallet? Some users who had an account now are null. For example, when fetching @joepetrowski's account:
This used to work before and I haven't modified any of this code, so I first need to be aware of any changes so I can keep the code up to date. |
Seems that the problem is caused by subidentities. I have an issue for it: paritytech/review-bot#107 Will put it as top priority and start working on it right now 🦾 |
This PR brings the Kusama and Polkadot constants for System Parachains into the control of the Fellowship.
Following up on paritytech/polkadot-sdk#2620 and paired with paritytech/polkadot-sdk#2666.
Types are still used from the
parachains-common
crate, but constants are moved into a new cratesystem-parachains-constants
in this repo.The re-exports
pub use parachains_common as common
in both asset hubs and collectives have been removed. This is a breaking change for anybody using them in this way, but these should be directly imported fromparachains-common
. This should be noted on the changelog.