fix panic for empty node addresses
This commit is contained in:
parent
de0cb12354
commit
0d0381cc42
@ -85,6 +85,9 @@ func (c *nodeConf) CoordinatorPeers() []string {
|
|||||||
|
|
||||||
func (c *nodeConf) PeerAddresses(peerId string) (addrs []string, ok bool) {
|
func (c *nodeConf) PeerAddresses(peerId string) (addrs []string, ok bool) {
|
||||||
addrs, ok = c.addrs[peerId]
|
addrs, ok = c.addrs[peerId]
|
||||||
|
if ok && len(addrs) == 0 {
|
||||||
|
return nil, false
|
||||||
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user