You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
/// A means of figuring out what outbound XCMP messages should be being sent.pubtraitXcmpMessageSource{/// Take a single XCMP message from the queue for the given `dest`, if one exists.fntake_outbound_messages(maximum_channels:usize) -> Vec<(ParaId,Vec<u8>)>;}
I believe this trait not only should account for max messages taken from the storage, but also for segment limitations if we want to make this panic correct.
Probably primitives for segment should be extracted into common crate to be accessible from both pallets.