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