peer+lnd: make BestBlockView available to Brontide

This commit is contained in:
Keagan McClelland 2023-07-12 17:26:43 -06:00
parent 74b30a71cb
commit ac265812fc
2 changed files with 5 additions and 0 deletions

View File

@ -233,6 +233,10 @@ type Config struct {
// transaction.
ChainNotifier chainntnfs.ChainNotifier
// BestBlockView is used to efficiently query for up-to-date
// blockchain state information
BestBlockView chainntnfs.BestBlockView
// RoutingPolicy is used to set the forwarding policy for links created by
// the Brontide.
RoutingPolicy models.ForwardingPolicy

View File

@ -3837,6 +3837,7 @@ func (s *server) peerConnected(conn net.Conn, connReq *connmgr.ConnReq,
SigPool: s.sigPool,
Wallet: s.cc.Wallet,
ChainNotifier: s.cc.ChainNotifier,
BestBlockView: s.cc.BestBlockTracker,
RoutingPolicy: s.cc.RoutingPolicy,
Sphinx: s.sphinx,
WitnessBeacon: s.witnessBeacon,