server: use nodeKeyECDH everywhere

This commit is contained in:
Johan T. Halseth 2021-01-06 10:47:19 +01:00
parent 06253e4dcc
commit 69770f15e4
No known key found for this signature in database
GPG Key ID: 15BAADA29DA20D26

View File

@ -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,
})