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
4176
4176
// first received the funding_signed.
4177
4177
let mut funding_broadcastable =
4178
4178
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(_)))
4181
4181
{
4182
4182
self.context.funding_transaction.take()
4183
4183
} else { None };
You can’t perform that action at this time.
0 commit comments