Skip to content

Commit

Permalink
f missing docs
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBlueMatt committed May 10, 2023
1 parent 0902fe4 commit 998c0e1
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion lightning/src/ln/channelmanager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -562,10 +562,16 @@ impl_writeable_tlv_based_enum!(EventCompletionAction,
);

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

0 comments on commit 998c0e1

Please sign in to comment.