mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-20 13:34:32 +01:00
channeldb: check fetchOpenChannel() error
This commit is contained in:
parent
fd22aab52e
commit
86425091e9
2 changed files with 7 additions and 2 deletions
|
@ -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
|
||||
})
|
||||
|
|
|
@ -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
|
Loading…
Add table
Reference in a new issue