Skip to content

Commit a870810

Browse files
committed
f ignoring -> excluding
1 parent 478bccc commit a870810

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lightning/src/chain/channelmonitor.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -546,14 +546,14 @@ pub enum ClaimableBalance {
546546
/// appeared in a block). The given balance is claimable (less on-chain fees) if the channel is
547547
/// force-closed now.
548548
ClaimableOnChannelClose {
549-
/// The amount available to claim, in satoshis, ignoring the on-chain fees which will be
549+
/// The amount available to claim, in satoshis, excluding the on-chain fees which will be
550550
/// required to do so.
551551
claimable_amount_satoshis: u64,
552552
},
553553
/// The channel has been closed, and the given balance is ours but awaiting confirmations until
554554
/// we consider it spendable.
555555
ClaimableAwaitingConfirmations {
556-
/// The amount available to claim, in satoshis, possibly ignoring the on-chain fees which
556+
/// The amount available to claim, in satoshis, possibly excluding the on-chain fees which
557557
/// were spent in broadcasting the transaction.
558558
claimable_amount_satoshis: u64,
559559
/// The height at which an [`Event::SpendableOutputs`] event will be generated for this
@@ -568,7 +568,7 @@ pub enum ClaimableBalance {
568568
/// considered safe from chain reorganizations, the balance will instead be provided via
569569
/// [`ClaimableBalance::ClaimableAwaitingConfirmations`].
570570
ContentiousClaimable {
571-
/// The amount available to claim, in satoshis, ignoring the on-chain fees which will be
571+
/// The amount available to claim, in satoshis, excluding the on-chain fees which will be
572572
/// required to do so.
573573
claimable_amount_satoshis: u64,
574574
/// The height at which the counterparty may be able to claim the balance if we have not
@@ -579,7 +579,7 @@ pub enum ClaimableBalance {
579579
/// fees) if the counterparty does not know the preimage for the HTLCs. These are somewhat
580580
/// likely to be claimed by our counterparty before we do.
581581
MaybeClaimableHTLCAwaitingTimeout {
582-
/// The amount available to claim, in satoshis, ignoring the on-chain fees which will be
582+
/// The amount available to claim, in satoshis, excluding the on-chain fees which will be
583583
/// required to do so.
584584
claimable_amount_satoshis: u64,
585585
/// The height at which we will be able to claim the balance if our counterparty has not
@@ -1360,7 +1360,7 @@ impl<Signer: Sign> ChannelMonitor<Signer> {
13601360
/// force-close the channel now or which are claimable on-chain or claims which are awaiting
13611361
/// confirmation.
13621362
///
1363-
/// Any balances in the channel which are available on-chain (ignoring on-chain fees) are
1363+
/// Any balances in the channel which are available on-chain (excluding on-chain fees) are
13641364
/// included here until an [`Event::SpendableOutputs`] event has been generated for the
13651365
/// balance, or until our counterparty has claimed the balance and accrued several
13661366
/// confirmations on the claim transaction.

0 commit comments

Comments
 (0)