Skip to content

Commit db0339f

Browse files
committed
f ClaimableBalance -> Balance
1 parent 19f80e9 commit db0339f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lightning/src/chain/chainmonitor.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ use chain;
3030
use chain::{Filter, WatchedOutput};
3131
use chain::chaininterface::{BroadcasterInterface, FeeEstimator};
3232
use chain::channelmonitor;
33-
use chain::channelmonitor::{ChannelMonitor, ChannelMonitorUpdate, ChannelMonitorUpdateErr, ClaimableBalance, MonitorEvent, Persist, TransactionOutputs};
33+
use chain::channelmonitor::{ChannelMonitor, ChannelMonitorUpdate, ChannelMonitorUpdateErr, Balance, MonitorEvent, Persist, TransactionOutputs};
3434
use chain::transaction::{OutPoint, TransactionData};
3535
use chain::keysinterface::Sign;
3636
use util::logger::Logger;
@@ -150,7 +150,7 @@ where C::Target: chain::Filter,
150150
///
151151
/// See [`ChannelMonitor::get_claimable_balances`] for more details on the exact criteria for
152152
/// inclusion in the return value.
153-
pub fn get_claimable_balances(&self, ignored_channels: &[ChannelDetails]) -> Vec<ClaimableBalance> {
153+
pub fn get_claimable_balances(&self, ignored_channels: &[ChannelDetails]) -> Vec<Balance> {
154154
let mut ret = Vec::new();
155155
let monitors = self.monitors.read().unwrap();
156156
for (_, monitor) in monitors.iter().filter(|(funding_outpoint, _)| {

0 commit comments

Comments
 (0)