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

@@ -249,7 +249,7 @@ func (c *ChanSeries) FetchChanAnns(chain chainhash.Hash,
chanIDs = append(chanIDs, chanID.ToUint64())
}
channels, err := c.graph.FetchChanInfos(nil, chanIDs)
channels, err := c.graph.FetchChanInfos(chanIDs)
if err != nil {
return nil, err
}