Skip to content

Commit 068d95e

Browse files
authored
Merge pull request #3232 from cooltexture1/fix-#3209
Small fix for #3209
2 parents 0d2fe67 + 5b60313 commit 068d95e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lightning/src/ln/channel_keys.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ key_read_write!(DelayedPaymentBasepoint);
124124
/// punish and claim all the channel funds if the state broadcasted was previously revoked.
125125
///
126126
/// [See the BOLT specs]
127-
/// (https://github.com/lightning/bolts/blob/master/03-transactions.md#localpubkey-local_htlcpubkey-remote_htlcpubkey-local_delayedpubkey-and-remote_delayedpubkey-derivation)
127+
/// <https://github.com/lightning/bolts/blob/master/03-transactions.md#localpubkey-local_htlcpubkey-remote_htlcpubkey-local_delayedpubkey-and-remote_delayedpubkey-derivation>
128128
/// for more information on key derivation details.
129129
#[derive(PartialEq, Eq, Clone, Copy, Debug)]
130130
pub struct DelayedPaymentKey(pub PublicKey);
@@ -151,7 +151,7 @@ key_read_write!(HtlcBasepoint);
151151
/// Thus, both channel counterparties' HTLC keys will appears in each HTLC output's script.
152152
///
153153
/// [See the BOLT specs]
154-
/// (https://github.com/lightning/bolts/blob/master/03-transactions.md#localpubkey-local_htlcpubkey-remote_htlcpubkey-local_delayedpubkey-and-remote_delayedpubkey-derivation)
154+
/// <https://github.com/lightning/bolts/blob/master/03-transactions.md#localpubkey-local_htlcpubkey-remote_htlcpubkey-local_delayedpubkey-and-remote_delayedpubkey-derivation>
155155
/// for more information on key derivation details.
156156
#[derive(PartialEq, Eq, Clone, Copy, Debug)]
157157
pub struct HtlcKey(pub PublicKey);
@@ -204,7 +204,7 @@ key_read_write!(RevocationBasepoint);
204204
/// per_commitment_point which is used in both commitment and HTLC transactions.
205205
///
206206
/// See [the BOLT spec for derivation details]
207-
/// (https://github.com/lightning/bolts/blob/master/03-transactions.md#revocationpubkey-derivation)
207+
/// <https://github.com/lightning/bolts/blob/master/03-transactions.md#revocationpubkey-derivation>
208208
#[derive(PartialEq, Eq, Clone, Copy, Debug, Hash)]
209209
pub struct RevocationKey(pub PublicKey);
210210

0 commit comments

Comments
 (0)