Skip to content

Commit

Permalink
Merge pull request #317 from elnosh/fix-inbound-comment
Browse files Browse the repository at this point in the history
Fix inbound capacity comment
  • Loading branch information
tnull committed Jun 23, 2024
2 parents bd9bd68 + 182bc21 commit 66fec69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -200,11 +200,11 @@ pub struct ChannelDetails {
/// balance is not available for inclusion in new outbound HTLCs). This further does not include
/// any pending outgoing HTLCs which are awaiting some other resolution to be sent.
pub outbound_capacity_msat: u64,
/// The available outbound capacity for sending HTLCs to the remote peer.
/// The available inbound capacity for receiving HTLCs from the remote peer.
///
/// The amount does not include any pending HTLCs which are not yet resolved
/// (and, thus, whose balance is not available for inclusion in new inbound HTLCs). This further
/// does not include any pending outgoing HTLCs which are awaiting some other resolution to be
/// does not include any pending incoming HTLCs which are awaiting some other resolution to be
/// sent.
pub inbound_capacity_msat: u64,
/// The number of required confirmations on the funding transactions before the funding is
Expand Down

0 comments on commit 66fec69

Please sign in to comment.