PR fixes - remove redundant case
This commit is contained in:
parent
5491422b12
commit
cd42f6591a
|
@ -188,9 +188,7 @@ impl LeaderScheduler {
|
|||
return;
|
||||
}
|
||||
|
||||
if height == self.bootstrap_height
|
||||
|| (height - self.bootstrap_height) % self.seed_rotation_interval == 0
|
||||
{
|
||||
if (height - self.bootstrap_height) % self.seed_rotation_interval == 0 {
|
||||
self.generate_schedule(height, bank);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue