Enable RecentBlockhashes one tick delay fix on testnet

Slot 25_580_256 / Epoch 72
This commit is contained in:
Trent Nelson
2020-07-21 22:17:26 -06:00
committed by mergify[bot]
parent 71932aed0a
commit dd9cb18d65

View File

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