multi: make NewChanIDFromOutpoint accept value instead of pointer

This commit is contained in:
Keagan McClelland
2024-01-29 16:19:15 -05:00
parent fd1cd315ce
commit db39a905cb
27 changed files with 108 additions and 106 deletions

View File

@@ -704,7 +704,7 @@ func (c *ChannelStateDB) FetchChannelByID(tx kvdb.RTx, id lnwire.ChannelID) (
return err
}
chanID := lnwire.NewChanIDFromOutPoint(&outPoint)
chanID := lnwire.NewChanIDFromOutPoint(outPoint)
if chanID != id {
return nil
}