Skip to content

Commit 2311060

Browse files
committed
f Use link isntead of an issue number
1 parent 35ec74f commit 2311060

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lightning/src/ln/channel.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1705,7 +1705,7 @@ impl<Signer: Sign> Channel<Signer> {
17051705
pub fn funding_locked(&mut self, msg: &msgs::FundingLocked) -> Result<(), ChannelError> {
17061706
if self.channel_state & (ChannelState::PeerDisconnected as u32) == ChannelState::PeerDisconnected as u32 {
17071707
self.workaround_lnd_bug_4006 = Some(msg.clone());
1708-
return Err(ChannelError::Ignore("Peer sent funding_locked when we needed a channel_reestablish. The peer is likely lnd, see their bug #4006.".to_owned()));
1708+
return Err(ChannelError::Ignore("Peer sent funding_locked when we needed a channel_reestablish. The peer is likely lnd, see https://github.com/lightningnetwork/lnd/issues/4006".to_owned()));
17091709
}
17101710

17111711
let non_shutdown_state = self.channel_state & (!MULTI_STATE_FLAGS);

0 commit comments

Comments
 (0)