p2p: always allow dynamic dials if network not disabled

This commit is contained in:
Péter Szilágyi 2015-12-03 11:45:35 +02:00
parent 3eebeae363
commit abb53644c6

View File

@ -337,7 +337,7 @@ func (srv *Server) Start() (err error) {
srv.ntab = ntab
}
dynPeers := srv.MaxPeers / 2
dynPeers := (srv.MaxPeers + 1) / 2
if !srv.Discovery {
dynPeers = 0
}