@@ -546,14 +546,14 @@ pub enum ClaimableBalance {
546
546
/// appeared in a block). The given balance is claimable (less on-chain fees) if the channel is
547
547
/// force-closed now.
548
548
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
550
550
/// required to do so.
551
551
claimable_amount_satoshis : u64 ,
552
552
} ,
553
553
/// The channel has been closed, and the given balance is ours but awaiting confirmations until
554
554
/// we consider it spendable.
555
555
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
557
557
/// were spent in broadcasting the transaction.
558
558
claimable_amount_satoshis : u64 ,
559
559
/// The height at which an [`Event::SpendableOutputs`] event will be generated for this
@@ -568,7 +568,7 @@ pub enum ClaimableBalance {
568
568
/// considered safe from chain reorganizations, the balance will instead be provided via
569
569
/// [`ClaimableBalance::ClaimableAwaitingConfirmations`].
570
570
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
572
572
/// required to do so.
573
573
claimable_amount_satoshis : u64 ,
574
574
/// The height at which the counterparty may be able to claim the balance if we have not
@@ -579,7 +579,7 @@ pub enum ClaimableBalance {
579
579
/// fees) if the counterparty does not know the preimage for the HTLCs. These are somewhat
580
580
/// likely to be claimed by our counterparty before we do.
581
581
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
583
583
/// required to do so.
584
584
claimable_amount_satoshis : u64 ,
585
585
/// 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> {
1360
1360
/// force-close the channel now or which are claimable on-chain or claims which are awaiting
1361
1361
/// confirmation.
1362
1362
///
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
1364
1364
/// included here until an [`Event::SpendableOutputs`] event has been generated for the
1365
1365
/// balance, or until our counterparty has claimed the balance and accrued several
1366
1366
/// confirmations on the claim transaction.
0 commit comments