Shorten the default new_peer_interval to 60s.

This increases the frequency at which we crawl the network.
This commit is contained in:
Henry de Valence 2020-02-18 13:41:00 -08:00 committed by Deirdre Connolly
parent b951f13f06
commit 5f07a25b05
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ impl Default for Config {
ewma_decay_time: Duration::from_secs(60),
peerset_request_buffer_size: 1,
handshake_timeout: Duration::from_secs(4),
new_peer_interval: Duration::from_secs(120),
new_peer_interval: Duration::from_secs(60),
peerset_initial_target_size: 50,
}
}