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 @@ -4228,8 +4228,8 @@ impl<SP: Deref> Channel<SP> where
4228
4228
// first received the funding_signed.
4229
4229
let mut funding_broadcastable =
4230
4230
if self.context.is_outbound() &&
4231
- matches!(self.context.channel_state, ChannelState::AwaitingChannelReady(flags) if !flags.is_set(AwaitingChannelReadyFlags::WAITING_FOR_BATCH)) ||
4232
- matches!(self.context.channel_state, ChannelState::ChannelReady(_))
4231
+ ( matches!(self.context.channel_state, ChannelState::AwaitingChannelReady(flags) if !flags.is_set(AwaitingChannelReadyFlags::WAITING_FOR_BATCH)) ||
4232
+ matches!(self.context.channel_state, ChannelState::ChannelReady(_)))
4233
4233
{
4234
4234
self.context.funding_transaction.take()
4235
4235
} else { None };
You can’t perform that action at this time.
0 commit comments