Rerere-enable RecentBlockhashes fix on testnet (epoch 76)

This commit is contained in:
Trent Nelson 2020-07-28 18:57:30 -06:00 committed by mergify[bot]
parent 678f94903b
commit e553a98d2f
1 changed files with 1 additions and 1 deletions

View File

@ -3065,7 +3065,7 @@ impl Bank {
fn fix_recent_blockhashes_sysvar_delay(&self) -> bool {
let activation_slot = match self.operating_mode() {
OperatingMode::Development => 0,
OperatingMode::Preview => Slot::MAX / 2,
OperatingMode::Preview => 27_740_256, // Epoch 76
OperatingMode::Stable => Slot::MAX / 2,
};