@@ -227,16 +227,17 @@ pub struct RouteHop {
227
227
/// to reach this node.
228
228
pub channel_features : ChannelFeatures ,
229
229
/// The fee taken on this hop (for paying for the use of the *next* channel in the path).
230
- /// If this is the last hop in [`Path::hops`] and we're not sending to a [`BlindedPath`], this
231
- /// is the full value of this [`Path`]'s part of the payment. If we're sending to a
232
- /// [`BlindedPath`] , this is the fee paid for use of the entire blinded path.
230
+ /// If this is the last hop in [`Path::hops`]:
231
+ /// * if we're sending to a [`BlindedPath`], this is the fee paid for use of the entire blinded path
232
+ /// * otherwise , this is the full value of this [`Path`]'s part of the payment
233
233
///
234
234
/// [`BlindedPath`]: crate::blinded_path::BlindedPath
235
235
pub fee_msat : u64 ,
236
- /// The CLTV delta added for this hop. If this is the last hop in [`Path::hops`] and we're not
237
- /// sending to a [`BlindedPath`], this is the full CLTV value expected at the destination, in
238
- /// excess of the current block height. If we're sending to a [`BlindedPath`], this is the CLTV
239
- /// delta for the entire blinded path.
236
+ /// The CLTV delta added for this hop.
237
+ /// If this is the last hop in [`Path::hops`]:
238
+ /// * if we're sending to a [`BlindedPath`], this is the CLTV delta for the entire blinded path
239
+ /// * otherwise, this is the full CLTV value expected at the destination, in excess of the current
240
+ /// block height
240
241
///
241
242
/// [`BlindedPath`]: crate::blinded_path::BlindedPath
242
243
pub cltv_expiry_delta : u32 ,
0 commit comments