@@ -1190,13 +1190,17 @@ pub struct FirstHopCandidate<'a> {
1190
1190
pub payer_node_id : & ' a NodeId ,
1191
1191
/// A unique ID which describes the payer.
1192
1192
///
1193
- /// It will not conflict with any [`super::gossip::NodeInfo::node_counter`]s, but may be equal
1194
- /// to one if the payer is a public node.
1193
+ /// It will not conflict with any [`NodeInfo::node_counter`]s, but may be equal to one if the
1194
+ /// payer is a public node.
1195
+ ///
1196
+ /// [`NodeInfo::node_counter`]: super::gossip::NodeInfo::node_counter
1195
1197
pub ( crate ) payer_node_counter : u32 ,
1196
1198
/// A unique ID which describes the first hop counterparty.
1197
1199
///
1198
- /// It will not conflict with any [`super::gossip::NodeInfo::node_counter`]s, but may be equal
1199
- /// to one if the counterparty is a public node.
1200
+ /// It will not conflict with any [`NodeInfo::node_counter`]s, but may be equal to one if the
1201
+ /// counterparty is a public node.
1202
+ ///
1203
+ /// [`NodeInfo::node_counter`]: super::gossip::NodeInfo::node_counter
1200
1204
pub ( crate ) target_node_counter : u32 ,
1201
1205
}
1202
1206
@@ -1226,13 +1230,17 @@ pub struct PrivateHopCandidate<'a> {
1226
1230
pub target_node_id : & ' a NodeId ,
1227
1231
/// A unique ID which describes the source node of the hop (further from the payment target).
1228
1232
///
1229
- /// It will not conflict with any [`super::gossip::NodeInfo::node_counter`]s, but may be equal
1230
- /// to one if the node is a public node.
1233
+ /// It will not conflict with any [`NodeInfo::node_counter`]s, but may be equal to one if the
1234
+ /// node is a public node.
1235
+ ///
1236
+ /// [`NodeInfo::node_counter`]: super::gossip::NodeInfo::node_counter
1231
1237
pub ( crate ) source_node_counter : u32 ,
1232
1238
/// A unique ID which describes the destination node of the hop (towards the payment target).
1233
1239
///
1234
- /// It will not conflict with any [`super::gossip::NodeInfo::node_counter`]s, but may be equal
1235
- /// to one if the node is a public node.
1240
+ /// It will not conflict with any [`NodeInfo::node_counter`]s, but may be equal to one if the
1241
+ /// node is a public node.
1242
+ ///
1243
+ /// [`NodeInfo::node_counter`]: super::gossip::NodeInfo::node_counter
1236
1244
pub ( crate ) target_node_counter : u32 ,
1237
1245
}
1238
1246
@@ -1256,9 +1264,10 @@ pub struct BlindedPathCandidate<'a> {
1256
1264
hint_idx : usize ,
1257
1265
/// A unique ID which describes the introduction point of the blinded path.
1258
1266
///
1259
- /// It will not conflict with any [`super::gossip::NodeInfo::node_counter`]s, but will generally
1260
- /// be equal to one from the public network graph (assuming the introduction point is a public
1261
- /// node).
1267
+ /// It will not conflict with any [`NodeInfo::node_counter`]s, but will generally be equal to
1268
+ /// one from the public network graph (assuming the introduction point is a public node).
1269
+ ///
1270
+ /// [`NodeInfo::node_counter`]: super::gossip::NodeInfo::node_counter
1262
1271
source_node_counter : u32 ,
1263
1272
}
1264
1273
@@ -1284,9 +1293,10 @@ pub struct OneHopBlindedPathCandidate<'a> {
1284
1293
hint_idx : usize ,
1285
1294
/// A unique ID which describes the introduction point of the blinded path.
1286
1295
///
1287
- /// It will not conflict with any [`super::gossip::NodeInfo::node_counter`]s, but will generally
1288
- /// be equal to one from the public network graph (assuming the introduction point is a public
1289
- /// node).
1296
+ /// It will not conflict with any [`NodeInfo::node_counter`]s, but will generally be equal to
1297
+ /// one from the public network graph (assuming the introduction point is a public node).
1298
+ ///
1299
+ /// [`NodeInfo::node_counter`]: super::gossip::NodeInfo::node_counter
1290
1300
source_node_counter : u32 ,
1291
1301
}
1292
1302
0 commit comments