@@ -8223,7 +8223,7 @@ where
8223
8223
8224
8224
// Reset any quiescence-related state as it is implicitly terminated once disconnected.
8225
8225
if matches!(self.context.channel_state, ChannelState::ChannelReady(_)) {
8226
- if self.context. quiescent_action.is_some() {
8226
+ if self.quiescent_action.is_some() {
8227
8227
// If we were trying to get quiescent, try again after reconnection.
8228
8228
self.context.channel_state.set_awaiting_quiescence();
8229
8229
}
@@ -12880,7 +12880,7 @@ where
12880
12880
match channel_state {
12881
12881
ChannelState::AwaitingChannelReady(_) => {},
12882
12882
ChannelState::ChannelReady(_) => {
12883
- if self.context. quiescent_action.is_some() {
12883
+ if self.quiescent_action.is_some() {
12884
12884
// If we're trying to get quiescent to do something, try again when we
12885
12885
// reconnect to the peer.
12886
12886
channel_state.set_awaiting_quiescence();
@@ -13291,7 +13291,7 @@ where
13291
13291
(59, self.funding.minimum_depth_override, option), // Added in 0.2
13292
13292
(60, self.context.historical_scids, optional_vec), // Added in 0.2
13293
13293
(61, fulfill_attribution_data, optional_vec), // Added in 0.2
13294
- (63, self.context. quiescent_action, option), // Added in 0.2
13294
+ (63, self.quiescent_action, option), // Added in 0.2
13295
13295
});
13296
13296
13297
13297
Ok(())
0 commit comments