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
})