mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-10-10 17:03:17 +02:00
routing: use new graph.DB interface in ChannelRouter
This commit is contained in:
@@ -13,6 +13,7 @@ import (
|
||||
"github.com/go-errors/errors"
|
||||
"github.com/lightningnetwork/lnd/channeldb"
|
||||
"github.com/lightningnetwork/lnd/channeldb/models"
|
||||
"github.com/lightningnetwork/lnd/graph"
|
||||
"github.com/lightningnetwork/lnd/lnwire"
|
||||
)
|
||||
|
||||
@@ -313,7 +314,7 @@ type ChannelEdgeUpdate struct {
|
||||
// constitutes. This function will also fetch any required auxiliary
|
||||
// information required to create the topology change update from the graph
|
||||
// database.
|
||||
func addToTopologyChange(graph *channeldb.ChannelGraph, update *TopologyChange,
|
||||
func addToTopologyChange(graph graph.DB, update *TopologyChange,
|
||||
msg interface{}) error {
|
||||
|
||||
switch m := msg.(type) {
|
||||
|
@@ -253,8 +253,7 @@ type Config struct {
|
||||
|
||||
// Graph is the channel graph that the ChannelRouter will use to gather
|
||||
// metrics from and also to carry out path finding queries.
|
||||
// TODO(roasbeef): make into an interface
|
||||
Graph *channeldb.ChannelGraph
|
||||
Graph graph.DB
|
||||
|
||||
// Chain is the router's source to the most up-to-date blockchain data.
|
||||
// All incoming advertised channels will be checked against the chain
|
||||
|
Reference in New Issue
Block a user