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 @@ -5504,7 +5504,7 @@ impl<Signer: EcdsaChannelSigner> ChannelMonitorImpl<Signer> {
5504
5504
// manual-broadcast mode.
5505
5505
let ( mut claimables, mut outputs) =
5506
5506
self . generate_claimable_outpoints_and_watch_outputs ( None ) ;
5507
- if !( self . is_manual_broadcast && ! self . funding_seen_onchain ) {
5507
+ if !self . is_manual_broadcast || self . funding_seen_onchain {
5508
5508
claimable_outpoints. append ( & mut claimables) ;
5509
5509
watch_outputs. append ( & mut outputs) ;
5510
5510
}
@@ -5546,7 +5546,7 @@ impl<Signer: EcdsaChannelSigner> ChannelMonitorImpl<Signer> {
5546
5546
let reason = ClosureReason :: HTLCsTimedOut { payment_hash : Some ( payment_hash) } ;
5547
5547
let ( mut new_outpoints, mut new_outputs) =
5548
5548
self . generate_claimable_outpoints_and_watch_outputs ( Some ( reason) ) ;
5549
- if !( self . is_manual_broadcast && ! self . funding_seen_onchain ) {
5549
+ if !self . is_manual_broadcast || self . funding_seen_onchain {
5550
5550
claimable_outpoints. append ( & mut new_outpoints) ;
5551
5551
watch_outputs. append ( & mut new_outputs) ;
5552
5552
}
You can’t perform that action at this time.
0 commit comments