Double grandpa gossip duration for Kusama and test networks (#5448)

* Double grandpa gossip duration.

* Make resend period slightly larger.

So it won't get triggered by additional grandpa delay.

* Bump other values as well.

* Don't change gossip duration on Polkadot.

(and Westend as it is meant to be a testbed for Polkadot)
This commit is contained in:
Robert Klotzner
2022-05-10 14:48:18 +02:00
committed by GitHub
parent 804d0f38a5
commit 7a602c47ab
2 changed files with 17 additions and 4 deletions
@@ -138,9 +138,9 @@ impl AggressionConfig {
impl Default for AggressionConfig {
fn default() -> Self {
AggressionConfig {
l1_threshold: Some(10),
l2_threshold: Some(25),
resend_unfinalized_period: Some(5),
l1_threshold: Some(13),
l2_threshold: Some(28),
resend_unfinalized_period: Some(8),
}
}
}