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 9978971bd9
commit 6498e4fbf6

View File

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