File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -562,10 +562,16 @@ impl_writeable_tlv_based_enum!(EventCompletionAction,
562
562
) ;
563
563
564
564
#[ derive( Clone , PartialEq , Eq , Debug ) ]
565
+ /// If something is blocked on the completion of an RAA-generated [`ChannelMonitorUpdate`] we track
566
+ /// the blocked action here. See enum variants for more info.
565
567
pub ( crate ) enum RAAMonitorUpdateBlockingAction {
566
- /// The inbound channel's channel_id
568
+ /// A forwarded payment was claimed. We block the downstream channel completing its monitor
569
+ /// update which removes the HTLC preimage until the upstream channel has gotten the preimage
570
+ /// durably to disk.
567
571
ForwardedPaymentOtherChannelClaim {
572
+ /// The upstream channel ID (i.e. the inbound edge).
568
573
channel_id : [ u8 ; 32 ] ,
574
+ /// The HTLC ID on the inbound edge.
569
575
htlc_id : u64 ,
570
576
} ,
571
577
}
You can’t perform that action at this time.
0 commit comments