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 5037dc2 commit 260b758Copy full SHA for 260b758
node/src/actors/chain_manager/mod.rs
@@ -2230,8 +2230,8 @@ impl ChainManager {
2230
// Auxiliary function that converts one delay in another
2231
fn delay_function(initial_delay: Duration) -> Duration {
2232
// TODO: Apply a right delay function
2233
- // Direct delay
2234
- initial_delay
+ // Remove 7.5 secs to the delay
+ initial_delay.saturating_sub(Duration::new(7, 500000000))
2235
}
2236
2237
// Calculate the delay to introduce in block broadcasting
0 commit comments