diff --git a/server.go b/server.go index 87754e89..cf9353ca 100644 --- a/server.go +++ b/server.go @@ -670,7 +670,7 @@ func newServer(cfg *Config, listenAddrs []net.Addr, // With the announcement generated, we'll sign it to properly // authenticate the message on the network. authSig, err := netann.SignAnnouncement( - s.nodeSigner, s.identityECDH.PubKey(), nodeAnn, + s.nodeSigner, nodeKeyECDH.PubKey(), nodeAnn, ) if err != nil { return nil, fmt.Errorf("unable to generate signature for "+ @@ -824,7 +824,7 @@ func newServer(cfg *Config, listenAddrs []net.Addr, IgnoreHistoricalFilters: cfg.IgnoreHistoricalGossipFilters, PinnedSyncers: cfg.Gossip.PinnedSyncers, }, - s.identityECDH.PubKey(), + nodeKeyECDH.PubKey(), ) s.localChanMgr = &localchans.Manager{ @@ -1415,7 +1415,7 @@ func newServer(cfg *Config, listenAddrs []net.Addr, RetryDuration: time.Second * 5, TargetOutbound: 100, Dial: noiseDial( - s.identityECDH, s.cfg.net, s.cfg.ConnectionTimeout, + nodeKeyECDH, s.cfg.net, s.cfg.ConnectionTimeout, ), OnConnection: s.OutboundPeerConnected, })