channeldb: check chanIndex bucket for nilness instead of edges

This commit is contained in:
halseth
2017-09-19 05:40:29 +02:00
committed by Olaoluwa Osuntokun
parent 90d13cf70c
commit 8693e8babc

View File

@@ -734,7 +734,7 @@ func (c *ChannelGraph) ChannelID(chanPoint *wire.OutPoint) (uint64, error) {
return ErrGraphNoEdgesFound
}
chanIndex := edges.Bucket(channelPointBucket)
if edges == nil {
if chanIndex == nil {
return ErrGraphNoEdgesFound
}