pub trait UpwardMessageSender {
    fn send_upward_message(msg: UpwardMessage) -> Result<u32, MessageSendError>;
}
Expand description

Something that should be called when sending an upward message.

Required Methods§

Send the given UMP message; return the expected number of blocks before the message will be dispatched or an error if the message cannot be sent.

Implementations on Foreign Types§

Implementors§