From 486f87576c3545df19374806d815f1b1765034f8 Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Mon, 16 Apr 2018 19:10:48 -0700 Subject: [PATCH] server: instantiate the chanSeries struct in the gossiper's config --- server.go | 1 + 1 file changed, 1 insertion(+) diff --git a/server.go b/server.go index 09f7b90a..d8be3186 100644 --- a/server.go +++ b/server.go @@ -390,6 +390,7 @@ func newServer(listenAddrs []string, chanDB *channeldb.DB, cc *chainControl, Notifier: s.cc.chainNotifier, ChainHash: *activeNetParams.GenesisHash, Broadcast: s.BroadcastMessage, + ChanSeries: &chanSeries{s.chanDB.ChannelGraph()}, SendToPeer: s.SendToPeer, NotifyWhenOnline: s.NotifyWhenOnline, ProofMatureDelta: 0,