Shorten the default new_peer_interval to 60s.
This increases the frequency at which we crawl the network.
This commit is contained in:
parent
b951f13f06
commit
5f07a25b05
|
|
@ -94,7 +94,7 @@ impl Default for Config {
|
||||||
ewma_decay_time: Duration::from_secs(60),
|
ewma_decay_time: Duration::from_secs(60),
|
||||||
peerset_request_buffer_size: 1,
|
peerset_request_buffer_size: 1,
|
||||||
handshake_timeout: Duration::from_secs(4),
|
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,
|
peerset_initial_target_size: 50,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue