-
Notifications
You must be signed in to change notification settings - Fork 684
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
Fix xcm config for coretime. #3768
Conversation
The CI pipeline was cancelled due to failure one of the required jobs. |
pub struct CollectivesOrFellows; | ||
impl Contains<Location> for CollectivesOrFellows { | ||
pub struct SystemOrFellows<ParaId>(PhantomData<ParaId>); | ||
impl<ParaId: IsSystem + From<u32>> Contains<Location> for SystemOrFellows<ParaId> { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this generic over ParaId
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if we do it this way: https://github.com/paritytech/polkadot-sdk/pull/3768/files#r1533610770
we dont need any generics here
Co-authored-by: Adrian Catangiu <adrian@parity.io>
Fixes paritytech#3762 . --------- Co-authored-by: eskimor <eskimor@no-such-url.com> Co-authored-by: Adrian Catangiu <adrian@parity.io>
Fixes #3762 .