We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c08c86 commit 3561196Copy full SHA for 3561196
lightning/src/ln/channel.rs
@@ -5488,12 +5488,8 @@ impl<SP: Deref> Channel<SP> where
5488
matches!(self.context.channel_state, ChannelState::ChannelReady(_)))
5489
{
5490
// Broadcast only if not yet confirmed
5491
- if self.context.get_funding_tx_confirmation_height().is_none() || self.context.get_funding_tx_confirmed_in().is_none() {
+ if self.context.get_funding_tx_confirmation_height().is_none() {
5492
funding_broadcastable = Some(funding_transaction.clone())
5493
- } else {
5494
- log_debug!(logger,
5495
- "Not rebroadcasting funding tx, already confirmed, height: {} txid: {}",
5496
- self.context.get_funding_tx_confirmation_height().unwrap_or_default(), funding_transaction.compute_txid());
5497
}
5498
5499
0 commit comments