File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -6401,7 +6401,7 @@ where
6401
6401
Ok((closing_transaction, total_fee_satoshis))
6402
6402
}
6403
6403
6404
- fn funding_outpoint(&self) -> OutPoint {
6404
+ pub fn funding_outpoint(&self) -> OutPoint {
6405
6405
self.funding.channel_transaction_parameters.funding_outpoint.unwrap()
6406
6406
}
6407
6407
Original file line number Diff line number Diff line change @@ -12605,7 +12605,7 @@ where
12605
12605
if let hash_map::Entry::Occupied(mut chan_entry) = peer_state.channel_by_id.entry(
12606
12606
channel_id) {
12607
12607
if let Some(chan) = chan_entry.get_mut().as_funded_mut() {
12608
- let channel_funding_outpoint = chan.funding.get_funding_txo().unwrap ();
12608
+ let channel_funding_outpoint = chan.funding_outpoint ();
12609
12609
if let Some((monitor_update, further_update_exists)) = chan.unblock_next_blocked_monitor_update() {
12610
12610
log_debug!(logger, "Unlocking monitor updating for channel {} and updating monitor",
12611
12611
channel_id);
You can’t perform that action at this time.
0 commit comments