File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -6821,9 +6821,8 @@ where
6821
6821
let splice_funding_failed =
6822
6822
if matches!(self.context.channel_state, ChannelState::ChannelReady(_)) {
6823
6823
self.reset_pending_splice_state().or_else(|| {
6824
- self.quiescent_action.take().and_then(|quiescent_action| match quiescent_action
6825
- {
6826
- QuiescentAction::Splice(instructions) => {
6824
+ match self.quiescent_action.take() {
6825
+ Some(QuiescentAction::Splice(instructions)) => {
6827
6826
self.context.channel_state.clear_awaiting_quiescence();
6828
6827
let (inputs, outputs) =
6829
6828
instructions.into_contributed_inputs_and_outputs();
@@ -6835,11 +6834,12 @@ where
6835
6834
})
6836
6835
},
6837
6836
#[cfg(any(test, fuzzing))]
6838
- _ => {
6837
+ Some(quiescent_action) => {
6839
6838
self.quiescent_action = Some(quiescent_action);
6840
6839
None
6841
6840
},
6842
- })
6841
+ None => None,
6842
+ }
6843
6843
})
6844
6844
} else {
6845
6845
None
You can’t perform that action at this time.
0 commit comments