Skip to content

Commit ed407c3

Browse files
committed
f missing docs
1 parent f9ddc57 commit ed407c3

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

lightning/src/ln/channelmanager.rs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -569,10 +569,16 @@ impl_writeable_tlv_based_enum!(EventCompletionAction,
569569
);
570570

571571
#[derive(Clone, PartialEq, Eq, Debug)]
572+
/// If something is blocked on the completion of an RAA-generated [`ChannelMonitorUpdate`] we track
573+
/// the blocked action here. See enum variants for more info.
572574
pub(crate) enum RAAMonitorUpdateBlockingAction {
573-
/// The inbound channel's channel_id
575+
/// A forwarded payment was claimed. We block the downstream channel completing its monitor
576+
/// update which removes the HTLC preimage until the upstream channel has gotten the preimage
577+
/// durably to disk.
574578
ForwardedPaymentOtherChannelClaim {
579+
/// The upstream channel ID (i.e. the inbound edge).
575580
channel_id: [u8; 32],
581+
/// The HTLC ID on the inbound edge.
576582
htlc_id: u64,
577583
},
578584
}

0 commit comments

Comments
 (0)