channeldb: check fetchOpenChannel() error

This commit is contained in:
ueno 2021-11-23 09:36:42 +09:00
parent fd22aab52e
commit 86425091e9
2 changed files with 7 additions and 2 deletions

View file

@ -1410,9 +1410,12 @@ func (c *ChannelStateDB) FetchHistoricalChannel(outPoint *wire.OutPoint) (
}
channel, err = fetchOpenChannel(chanBucket, outPoint)
if err != nil {
return err
}
channel.Db = c
return err
return nil
}, func() {
channel = nil
})

View file

@ -3,7 +3,9 @@
## Bug Fixes
* [Fixed an inaccurate log message during a compaction failure](https://github.com/lightningnetwork/lnd/issues/5937)
* [A bug has been fixed in channeldb that uses the return value without checking error](https://github.com/lightningnetwork/lnd/pull/6012)
# Contributors (Alphabetical Order)
* Jamie Turley
* Jamie Turley
* nayuta-ueno