Skip to content

Commit 4fd9479

Browse files
committed
fixup! Add configuration options for HRN settings
1 parent f0a39b1 commit 4fd9479

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/config.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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)]
229229
pub 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
}

0 commit comments

Comments
 (0)