@@ -1090,8 +1090,8 @@ func (l *channelLink) htlcManager() {
10901090 // ActiveLinkEvent. We'll also defer an inactive link notification for
10911091 // when the link exits to ensure that every active notification is
10921092 // matched by an inactive one.
1093- l .cfg .NotifyActiveLink (* l .ChannelPoint ())
1094- defer l .cfg .NotifyInactiveLinkEvent (* l .ChannelPoint ())
1093+ l .cfg .NotifyActiveLink (l .ChannelPoint ())
1094+ defer l .cfg .NotifyInactiveLinkEvent (l .ChannelPoint ())
10951095
10961096 // TODO(roasbeef): need to call wipe chan whenever D/C?
10971097
@@ -1215,8 +1215,8 @@ func (l *channelLink) htlcManager() {
12151215 // we can go ahead and send the active channel notification. We'll also
12161216 // defer the inactive notification for when the link exits to ensure
12171217 // that every active notification is matched by an inactive one.
1218- l .cfg .NotifyActiveChannel (* l .ChannelPoint ())
1219- defer l .cfg .NotifyInactiveChannel (* l .ChannelPoint ())
1218+ l .cfg .NotifyActiveChannel (l .ChannelPoint ())
1219+ defer l .cfg .NotifyInactiveChannel (l .ChannelPoint ())
12201220
12211221 // With the channel states synced, we now reset the mailbox to ensure
12221222 // we start processing all unacked packets in order. This is done here
@@ -2558,9 +2558,8 @@ func (l *channelLink) PeerPubKey() [33]byte {
25582558
25592559// ChannelPoint returns the channel outpoint for the channel link.
25602560// NOTE: Part of the ChannelLink interface.
2561- func (l * channelLink ) ChannelPoint () * wire.OutPoint {
2562- chanPoint := l .channel .ChannelPoint ()
2563- return & chanPoint
2561+ func (l * channelLink ) ChannelPoint () wire.OutPoint {
2562+ return l .channel .ChannelPoint ()
25642563}
25652564
25662565// ShortChanID returns the short channel ID for the channel link. The short
0 commit comments