We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e0ad77 commit 845e336Copy full SHA for 845e336
config/src/defaults.rs
@@ -62,7 +62,7 @@ pub trait Defaults {
62
63
/// Default period for melt peers
64
fn connections_check_melted_peers_period(&self) -> Duration {
65
- Duration::from_secs(3600)
+ Duration::from_secs(300)
66
}
67
68
/// Default period for trying connecting to recently discovered peer addresses
@@ -84,7 +84,7 @@ pub trait Defaults {
84
/// Period in seconds for a potential peer address to be kept "iced", i.e. will not be tried
85
/// again before that amount of time.
86
fn connections_bucketing_ice_period(&self) -> Duration {
87
- Duration::from_secs(14400) // 4 hours
+ Duration::from_secs(3600) // 4 hours
88
89
90
/// Period that indicate the validity of a checked peer
0 commit comments