From 16c92bebdf2a45072fd4929cacd6d17665bf0eb6 Mon Sep 17 00:00:00 2001 From: Jedrzej Stuczynski Date: Wed, 19 Feb 2020 11:37:47 +0000 Subject: [PATCH] Removed the fake-news comments --- nym-client/src/config/mod.rs | 5 ----- nym-client/src/config/template.rs | 5 ----- 2 files changed, 10 deletions(-) diff --git a/nym-client/src/config/mod.rs b/nym-client/src/config/mod.rs index 507e9e7dc5..b1d6a8b7b2 100644 --- a/nym-client/src/config/mod.rs +++ b/nym-client/src/config/mod.rs @@ -318,12 +318,10 @@ pub struct Debug { /// The parameter of Poisson distribution determining how long, on average, /// it is going to take for another loop cover traffic message to be sent. - /// If set to a negative value, the loop cover traffic stream will be disabled. /// The provided value is interpreted as milliseconds. loop_cover_traffic_average_delay: u64, /// The uniform delay every which clients are querying the providers for received packets. - /// If set to a negative value, client will never try to fetch their messages. /// The provided value is interpreted as milliseconds. fetch_message_delay: u64, @@ -331,7 +329,6 @@ pub struct Debug { /// it is going to take another 'real traffic stream' message to be sent. /// If no real packets are available and cover traffic is enabled, /// a loop cover message is sent instead in order to preserve the rate. - /// If set to a negative value, client will never try to send real traffic data. /// The provided value is interpreted as milliseconds. message_sending_average_delay: u64, @@ -343,8 +340,6 @@ pub struct Debug { /// The uniform delay every which clients are querying the directory server /// to try to obtain a compatible network topology to send sphinx packets through. - /// If set to a negative value, client will never try to refresh its topology, - /// meaning it will always try to use whatever it obtained on startup. /// The provided value is interpreted as milliseconds. topology_refresh_rate: u64, diff --git a/nym-client/src/config/template.rs b/nym-client/src/config/template.rs index 78635045c1..561ae802ad 100644 --- a/nym-client/src/config/template.rs +++ b/nym-client/src/config/template.rs @@ -71,12 +71,10 @@ average_packet_delay = {{ debug.average_packet_delay }} # The parameter of Poisson distribution determining how long, on average, # it is going to take for another loop cover traffic message to be sent. -# If set to a negative value, the loop cover traffic stream will be disabled. # The provided value is interpreted as milliseconds. loop_cover_traffic_average_delay = {{ debug.loop_cover_traffic_average_delay }} # The uniform delay every which clients are querying the providers for received packets. -# If set to a negative value, client will never try to fetch their messages. # The provided value is interpreted as milliseconds. fetch_message_delay = {{ debug.fetch_message_delay }} @@ -84,7 +82,6 @@ fetch_message_delay = {{ debug.fetch_message_delay }} # it is going to take another 'real traffic stream' message to be sent. # If no real packets are available and cover traffic is enabled, # a loop cover message is sent instead in order to preserve the rate. -# If set to a negative value, client will never try to send real traffic data. # The provided value is interpreted as milliseconds. message_sending_average_delay = {{ debug.message_sending_average_delay }} @@ -96,8 +93,6 @@ rate_compliant_cover_messages_disabled = {{ debug.rate_compliant_cover_messages_ # The uniform delay every which clients are querying the directory server # to try to obtain a compatible network topology to send sphinx packets through. -# If set to a negative value, client will never try to refresh its topology, -# meaning it will always try to use whatever it obtained on startup. # The provided value is interpreted as milliseconds. topology_refresh_rate = {{ debug.topology_refresh_rate }}