fix merge

This commit is contained in:
Boog900 2024-05-17 15:23:51 +01:00
parent 065fa242d8
commit e1dfa3e605
No known key found for this signature in database
GPG key ID: 42AB1287CB0041C2
2 changed files with 4 additions and 0 deletions

View file

@ -8,3 +8,6 @@ pub(crate) const MAX_SEED_CONNECTIONS: usize = 3;
/// The timeout for when we fail to find a peer to connect to.
pub(crate) const OUTBOUND_CONNECTION_ATTEMPT_TIMEOUT: Duration = Duration::from_secs(5);
/// The durations of a short ban.
pub(crate) const SHORT_BAN: Duration = Duration::from_secs(60 * 10);

View file

@ -11,5 +11,6 @@ pub mod client_pool;
pub mod config;
pub mod connection_maintainer;
mod constants;
mod sync_states;
pub use config::P2PConfig;