diff --git a/peer.go b/peer.go index 0bc378d6..27a31238 100644 --- a/peer.go +++ b/peer.go @@ -399,7 +399,7 @@ func (p *peer) loadActiveChannels(chans []*channeldb.OpenChannel) error { linkCfg := htlcswitch.ChannelLinkConfig{ Peer: p, DecodeHopIterators: p.server.sphinx.DecodeHopIterators, - DecodeOnionObfuscator: p.server.sphinx.ExtractErrorEncrypter, + ExtractErrorEncrypter: p.server.sphinx.ExtractErrorEncrypter, GetLastChannelUpdate: createGetLastUpdate(p.server.chanRouter, p.PubKey(), lnChan.ShortChanID()), DebugHTLC: cfg.DebugHTLC, @@ -1366,7 +1366,7 @@ out: linkConfig := htlcswitch.ChannelLinkConfig{ Peer: p, DecodeHopIterators: p.server.sphinx.DecodeHopIterators, - DecodeOnionObfuscator: p.server.sphinx.ExtractErrorEncrypter, + ExtractErrorEncrypter: p.server.sphinx.ExtractErrorEncrypter, GetLastChannelUpdate: createGetLastUpdate(p.server.chanRouter, p.PubKey(), newChanReq.channel.ShortChanID()), DebugHTLC: cfg.DebugHTLC,