mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-02-25 07:17:40 +01:00
Add a useful log_trace before we release holding cell.
This commit is contained in:
parent
29ed3e227f
commit
8d9b1af8c3
1 changed files with 2 additions and 0 deletions
|
@ -1851,6 +1851,8 @@ impl Channel {
|
|||
fn free_holding_cell_htlcs(&mut self) -> Result<Option<(msgs::CommitmentUpdate, ChannelMonitor)>, ChannelError> {
|
||||
assert_eq!(self.channel_state & ChannelState::MonitorUpdateFailed as u32, 0);
|
||||
if self.holding_cell_htlc_updates.len() != 0 || self.holding_cell_update_fee.is_some() {
|
||||
log_trace!(self, "Freeing holding cell with {} HTLC updates{}", self.holding_cell_htlc_updates.len(), if self.holding_cell_update_fee.is_some() { " and a fee update" } else { "" });
|
||||
|
||||
let mut htlc_updates = Vec::new();
|
||||
mem::swap(&mut htlc_updates, &mut self.holding_cell_htlc_updates);
|
||||
let mut update_add_htlcs = Vec::with_capacity(htlc_updates.len());
|
||||
|
|
Loading…
Add table
Reference in a new issue