diff --git a/runtime/src/bank.rs b/runtime/src/bank.rs index 167fe4a87d..bce0a9f8a5 100644 --- a/runtime/src/bank.rs +++ b/runtime/src/bank.rs @@ -2432,7 +2432,7 @@ impl Bank { let should_enable = match self.cluster_type() { ClusterType::Development => true, ClusterType::Devnet => true, - ClusterType::Testnet => current_epoch >= Epoch::max_value(), + ClusterType::Testnet => current_epoch >= 97, ClusterType::MainnetBeta => { #[cfg(not(test))] let should_enable = current_epoch >= Epoch::max_value();