From b4299bcc9ace423bba2fcb708bd4a5f8661d5278 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Sun, 14 Oct 2018 21:46:57 +0900 Subject: [PATCH] Use live, not usable for list_usable_channels --- src/ln/channelmanager.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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(), -- 2.30.2