rpc+routing: fix panic when channel edge but no edge info in db

This commit is contained in:
Olaoluwa Osuntokun
2017-02-16 19:35:22 +08:00
parent 384fe61e73
commit 5560f032f6
2 changed files with 4 additions and 0 deletions

View File

@ -831,6 +831,8 @@ func (r *ChannelRouter) syncChannelGraph(syncReq *syncRequest) error {
chanID = lnwire.NewChanIDFromInt(e1.ChannelID)
case e2 != nil:
chanID = lnwire.NewChanIDFromInt(e2.ChannelID)
case e1 == nil && e2 == nil:
return nil
default:
chanID = lnwire.NewChanIDFromInt(e1.ChannelID)
}