We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents aad1803 + d718822 commit e12d88dCopy full SHA for e12d88d
lightning/src/chain/chainmonitor.rs
@@ -150,7 +150,7 @@ where C::Target: chain::Filter,
150
///
151
/// See [`ChannelMonitor::get_claimable_balances`] for more details on the exact criteria for
152
/// inclusion in the return value.
153
- pub fn get_claimable_balances(&self, ignored_channels: &[ChannelDetails]) -> Vec<Balance> {
+ pub fn get_claimable_balances(&self, ignored_channels: &[&ChannelDetails]) -> Vec<Balance> {
154
let mut ret = Vec::new();
155
let monitors = self.monitors.read().unwrap();
156
for (_, monitor) in monitors.iter().filter(|(funding_outpoint, _)| {
0 commit comments