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.
We will want a runtime component for parachains to handle incoming messages.
The module will look something like this.
traitOnMessages{fnon_messages(messages:Vec<polkadot::IncomingMessage>);}traitTrait{typeOnMessages:OnMessages;}struct<T:Trait> Module<T>{// defines an inherent for the incoming messages to be passed. the incoming messages are passed to `T::OnMessages::on_messages`.}