File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -227,18 +227,18 @@ impl Default for Config {
227227/// Configuration options for how our node resolves Human-Readable Names (HRNs) when acting as a client.
228228#[ derive( Debug , Clone ) ]
229229pub enum HRNResolverConfig {
230- /// Use bLIP-32 to ask other nodes to resolve names for us.
230+ /// Use [bLIP-32] to ask other nodes to resolve names for us.
231+ ///
232+ /// [bLIP-32]: https://github.com/lightning/blips/blob/master/blip-0032.md
231233 Blip32 ,
232234 /// Resolve names locally using a specific DNS server.
233235 Dns {
234236 /// The IP and port of the DNS server.
235237 /// **Default:** `8.8.8.8:53` (Google Public DNS)
236238 dns_server_address : String ,
237- /// If set to true, this allows others to use our node for HRN resolutions ([bLIP-32]) .
239+ /// If set to true, this allows others to use our node for HRN resolutions.
238240 ///
239241 /// **Note:** This feature requires the underlying node to be announceable.
240- ///
241- /// [bLIP-32]: https://github.com/lightning/blips/blob/master/blip-0032.md
242242 enable_hrn_resolution_service : bool ,
243243 } ,
244244}
You can’t perform that action at this time.
0 commit comments