Enable stricter check on rent-exempt accounts on testnet (#12224)

This commit is contained in:
Ryo Onodera 2020-09-15 15:48:48 +09:00 committed by GitHub
parent 7d48339b7c
commit 241e6f1ecf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ impl RentCollector {
match self.cluster_type.unwrap() {
ClusterType::Development => true,
ClusterType::Devnet => true,
ClusterType::Testnet => self.epoch >= Epoch::max_value(),
ClusterType::Testnet => self.epoch >= 97,
ClusterType::MainnetBeta => self.epoch >= Epoch::max_value(),
}
}