multi+refactor: let FetchChanInfos not take tx

In preparation for having a clean graph DB interface, refactor
FetchChanInfos so that no transaction can be provided.
This commit is contained in:
Elle Mouton
2024-06-14 19:51:11 -04:00
parent cf3de72503
commit 71e93526d6
4 changed files with 16 additions and 7 deletions

View File

@@ -1023,7 +1023,7 @@ func (r *ChannelRouter) pruneZombieChans() error {
}
disabledEdges, err := r.cfg.Graph.FetchChanInfos(
nil, disabledChanIDs,
disabledChanIDs,
)
if err != nil {
return fmt.Errorf("unable to fetch disabled channels "+