File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -155,16 +155,18 @@ pub enum Event {
155
155
PaymentForwarded {
156
156
/// The fee, in milli-satoshis, which was earned as a result of the payment.
157
157
///
158
- /// Note that if we force-closed a channel while a forwarded HTLC was pending, the amount
159
- /// the next hop claimed may have been rounded down, causing a higher fee than expected.
158
+ /// Note that if we force-closed the channel over which we forwarded an HTLC while the HTLC
159
+ /// was pending, the amount the next hop claimed may have been rounded down, causing a
160
+ /// higher fee than expected.
160
161
///
161
162
/// If the channel which sent us the payment has been force-closed, we will claim the funds
162
163
/// via an on-chain transaction. In that case we do not consider the on-chain transaction
163
164
/// fees involved in such a claim and this value will be `None`. It is possible duplicate
164
165
/// `PaymentForwarded` events are generated for the same payment iff `fee_earned_msat` is
165
166
/// `None`.
166
167
fee_earned_msat : Option < u64 > ,
167
- /// If this is `true`, the forwarded HTLC was claimed on-chain after a force-closure.
168
+ /// If this is `true`, the forwarded HTLC will be claimed on-chain after a the channel on
169
+ /// which we received the HTLC was force-closed.
168
170
claim_from_onchain_tx : bool ,
169
171
} ,
170
172
}
You can’t perform that action at this time.
0 commit comments