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
No known key found for this signature in database
GPG Key ID: 9CC5B105D03521A2
2 changed files with 4 additions and 0 deletions

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

@ -1601,6 +1601,8 @@ func (r *rpcServer) GetNetworkInfo(context.Context, *lnrpc.NetworkInfoRequest) (
chanCapacity = c2.Capacity
case c2 == nil:
chanCapacity = c1.Capacity
case c1 == nil && c2 == nil:
return nil
default:
chanCapacity = c1.Capacity
}