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

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