Browse Source

settings: delete deprecated quarantine setting

draoi 2 years ago
parent
commit
0329e2b296
1 changed files with 0 additions and 10 deletions
  1. 0 10
      src/net/settings.rs

+ 0 - 10
src/net/settings.rs

@@ -62,8 +62,6 @@ pub struct Settings {
     pub channel_heartbeat_interval: u64,
     pub channel_heartbeat_interval: u64,
     /// Allow localnet hosts
     /// Allow localnet hosts
     pub localnet: bool,
     pub localnet: bool,
-    /// Downgrade a peer to greylist if they've been quarantined N times
-    pub hosts_quarantine_limit: usize,
     /// Cooling off time for peer discovery when unsuccessful
     /// Cooling off time for peer discovery when unsuccessful
     pub outbound_peer_discovery_cooloff_time: u64,
     pub outbound_peer_discovery_cooloff_time: u64,
     /// Time between peer discovery attempts
     /// Time between peer discovery attempts
@@ -102,7 +100,6 @@ impl Default for Settings {
             channel_handshake_timeout: 10,
             channel_handshake_timeout: 10,
             channel_heartbeat_interval: 30,
             channel_heartbeat_interval: 30,
             localnet: false,
             localnet: false,
-            hosts_quarantine_limit: 50,
             outbound_peer_discovery_cooloff_time: 30,
             outbound_peer_discovery_cooloff_time: 30,
             outbound_peer_discovery_attempt_time: 5,
             outbound_peer_discovery_attempt_time: 5,
             hostlist: "/dev/null".to_string(),
             hostlist: "/dev/null".to_string(),
@@ -187,10 +184,6 @@ pub struct SettingsOpt {
     #[structopt(long)]
     #[structopt(long)]
     pub localnet: bool,
     pub localnet: bool,
 
 
-    /// Downgrade a peer to greylist if they've been quarantined N times
-    #[structopt(skip)]
-    pub hosts_quarantine_limit: Option<usize>,
-
     /// Cooling off time for peer discovery when unsuccessful
     /// Cooling off time for peer discovery when unsuccessful
     #[structopt(skip)]
     #[structopt(skip)]
     pub outbound_peer_discovery_cooloff_time: Option<u64>,
     pub outbound_peer_discovery_cooloff_time: Option<u64>,
@@ -248,9 +241,6 @@ impl From<SettingsOpt> for Settings {
                 .channel_heartbeat_interval
                 .channel_heartbeat_interval
                 .unwrap_or(def.channel_heartbeat_interval),
                 .unwrap_or(def.channel_heartbeat_interval),
             localnet: opt.localnet,
             localnet: opt.localnet,
-            hosts_quarantine_limit: opt
-                .hosts_quarantine_limit
-                .unwrap_or(def.hosts_quarantine_limit),
             outbound_peer_discovery_cooloff_time: opt
             outbound_peer_discovery_cooloff_time: opt
                 .outbound_peer_discovery_cooloff_time
                 .outbound_peer_discovery_cooloff_time
                 .unwrap_or(def.outbound_peer_discovery_cooloff_time),
                 .unwrap_or(def.outbound_peer_discovery_cooloff_time),