File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -4176,8 +4176,8 @@ impl<SP: Deref> Channel<SP> where
41764176 // first received the funding_signed.
41774177 let mut funding_broadcastable =
41784178 if self.context.is_outbound() &&
4179- matches!(self.context.channel_state, ChannelState::AwaitingChannelReady(flags) if !flags.is_set(AwaitingChannelReadyFlags::WAITING_FOR_BATCH)) ||
4180- matches!(self.context.channel_state, ChannelState::ChannelReady(_))
4179+ ( matches!(self.context.channel_state, ChannelState::AwaitingChannelReady(flags) if !flags.is_set(AwaitingChannelReadyFlags::WAITING_FOR_BATCH)) ||
4180+ matches!(self.context.channel_state, ChannelState::ChannelReady(_)))
41814181 {
41824182 self.context.funding_transaction.take()
41834183 } else { None };
You can’t perform that action at this time.
0 commit comments