routing: make setting source node optional when parsing testdata

This commit is contained in:
Olaoluwa Osuntokun 2017-10-18 21:29:42 -07:00
parent e70031da7b
commit 86283b0d06
No known key found for this signature in database
GPG Key ID: 964EA263DD637C21

@ -209,9 +209,11 @@ func parseTestGraph(path string) (*channeldb.ChannelGraph, func(), aliasMap, err
}
}
// Set the selected source node
if err := graph.SetSourceNode(source); err != nil {
return nil, nil, nil, err
if source != nil {
// Set the selected source node
if err := graph.SetSourceNode(source); err != nil {
return nil, nil, nil, err
}
}
// With all the vertexes inserted, we can now insert the edges into the