G5YWJD4ASX2HP65SGNIZEIE6SM7H6ZEFOUOXAWN3UI4PTALKHGFQC
}
/// Send a `ChannelMsg` from the background handler to the client.
pub fn send_channel_msg(&self, channel: ChannelId, msg: ChannelMsg) -> bool {
if let Some(chan) = self.channels.get(&channel) {
chan.send(OpenChannelMsg::Msg(msg)).unwrap_or(());
true
} else {
false
}