File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -3524,14 +3524,12 @@ impl<Signer: Sign> Channel<Signer> {
3524
3524
self . update_time_counter += 1 ;
3525
3525
true
3526
3526
} else if non_shutdown_state == ( ChannelState :: FundingSent as u32 | ChannelState :: OurFundingLocked as u32 ) {
3527
- // We got a reorg but not enough to trigger a force close, just update
3528
- // funding_tx_confirmed_in and return.
3527
+ // We got a reorg but not enough to trigger a force close, just ignore.
3529
3528
false
3530
3529
} else if self . channel_state < ChannelState :: ChannelFunded as u32 {
3531
3530
panic ! ( "Started confirming a channel in a state pre-FundingSent?: {}" , self . channel_state) ;
3532
3531
} else {
3533
- // We got a reorg but not enough to trigger a force close, just update
3534
- // funding_tx_confirmed_in and return.
3532
+ // We got a reorg but not enough to trigger a force close, just ignore.
3535
3533
false
3536
3534
} ;
3537
3535
You can’t perform that action at this time.
0 commit comments