server: disable bootstrapping for simnet mode by default
This commit is contained in:
parent
bf071c1985
commit
8a208ae3cd
@ -363,13 +363,15 @@ func (s *server) Start() error {
|
|||||||
// If network bootstrapping hasn't been disabled, then we'll configure
|
// If network bootstrapping hasn't been disabled, then we'll configure
|
||||||
// the set of active bootstrappers, and launch a dedicated goroutine to
|
// the set of active bootstrappers, and launch a dedicated goroutine to
|
||||||
// maintain a set of persistent connections.
|
// maintain a set of persistent connections.
|
||||||
if !cfg.NoNetBootstrap {
|
if !cfg.NoNetBootstrap && !(cfg.Bitcoin.SimNet || cfg.Litecoin.SimNet) {
|
||||||
networkBootStrappers, err := initNetworkBootstrappers(s)
|
networkBootStrappers, err := initNetworkBootstrappers(s)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
s.wg.Add(1)
|
s.wg.Add(1)
|
||||||
go s.peerBootstrapper(3, networkBootStrappers)
|
go s.peerBootstrapper(3, networkBootStrappers)
|
||||||
|
} else {
|
||||||
|
srvrLog.Infof("Auto peer bootstrapping is disabled")
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
|
Loading…
Reference in New Issue
Block a user