Merge pull request #85 from regolith-labs/hardhat/5-min-epoch

bump epoch minutes to 5
This commit is contained in:
Hardhat Chad
2024-08-22 17:06:16 -05:00
committed by GitHub

View File

@@ -34,7 +34,7 @@ pub const ONE_ORE: u64 = 10u64.pow(TOKEN_DECIMALS as u32);
pub const ONE_MINUTE: i64 = 60;
/// The number of minutes in a program epoch.
pub const EPOCH_MINUTES: i64 = 2;
pub const EPOCH_MINUTES: i64 = 5;
/// The duration of a program epoch, in seconds.
pub const EPOCH_DURATION: i64 = ONE_MINUTE * EPOCH_MINUTES;