File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -1860,7 +1860,8 @@ impl ReplayStage {
1860
1860
pub fn get_unlock_switch_vote_slot ( operating_mode : OperatingMode ) -> Slot {
1861
1861
match operating_mode {
1862
1862
OperatingMode :: Development => 0 ,
1863
- OperatingMode :: Stable => std:: u64:: MAX / 2 ,
1863
+ // 400_000 slots into epoch 61
1864
+ OperatingMode :: Stable => 26_752_000 ,
1864
1865
// Epoch 63
1865
1866
OperatingMode :: Preview => 21_692_256 ,
1866
1867
}
@@ -1869,7 +1870,8 @@ impl ReplayStage {
1869
1870
pub fn get_unlock_heaviest_subtree_fork_choice ( operating_mode : OperatingMode ) -> Slot {
1870
1871
match operating_mode {
1871
1872
OperatingMode :: Development => 0 ,
1872
- OperatingMode :: Stable => std:: u64:: MAX / 2 ,
1873
+ // 400_000 slots into epoch 61
1874
+ OperatingMode :: Stable => 26_752_000 ,
1873
1875
// Epoch 63
1874
1876
OperatingMode :: Preview => 21_692_256 ,
1875
1877
}
You can’t perform that action at this time.
0 commit comments