From: Matt Corallo Date: Sun, 14 Oct 2018 12:46:57 +0000 (+0900) Subject: Use live, not usable for list_usable_channels X-Git-Tag: v0.0.12~292^2~3 X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;ds=sidebyside;h=b4299bcc9ace423bba2fcb708bd4a5f8661d5278;hp=4cb059e7b996821e493ed3c61b00ae4d8bb6879e;p=rust-lightning Use live, not usable for list_usable_channels --- diff --git a/src/ln/channelmanager.rs b/src/ln/channelmanager.rs index 8bc5bf88..b967a677 100644 --- a/src/ln/channelmanager.rs +++ b/src/ln/channelmanager.rs @@ -449,7 +449,10 @@ impl ChannelManager { let channel_state = self.channel_state.lock().unwrap(); let mut res = Vec::with_capacity(channel_state.by_id.len()); for (channel_id, channel) in channel_state.by_id.iter() { - if channel.is_usable() { + // Note we use is_live here instead of usable which leads to somewhat confused + // internal/external nomenclature, but that's ok cause that's probably what the user + // really wanted anyway. + if channel.is_live() { res.push(ChannelDetails { channel_id: (*channel_id).clone(), short_channel_id: channel.get_short_channel_id(),