BRDS7STAKAIUHJ2ORB3HLPMQCXILWWOC5DPXKL6P2AT7CUSZD4OQC }/// 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}