From 7931579610795cfe736c297206f0aac3443580c9 Mon Sep 17 00:00:00 2001 From: Trent Nelson Date: Sun, 26 Jul 2020 10:19:38 -0600 Subject: [PATCH] Remove accidental MB activation for RecentBlockhashes consistency fix --- runtime/src/bank.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/bank.rs b/runtime/src/bank.rs index d3c8b32d12..b22de90b1c 100644 --- a/runtime/src/bank.rs +++ b/runtime/src/bank.rs @@ -3065,8 +3065,8 @@ impl Bank { fn fix_recent_blockhashes_sysvar_delay(&self) -> bool { let activation_slot = match self.operating_mode() { OperatingMode::Development => 0, - OperatingMode::Stable => 26_444_256, // Epoch 74 OperatingMode::Preview => Slot::MAX / 2, + OperatingMode::Stable => Slot::MAX / 2, }; self.slot() >= activation_slot