From 5e60318eb81d7eb2eabbf8c9392c80b74470193b Mon Sep 17 00:00:00 2001 From: Hardhat Chad Date: Tue, 20 Aug 2024 17:24:26 +0000 Subject: [PATCH] bump epoch minutes to 5 --- api/src/consts.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/consts.rs b/api/src/consts.rs index c2200ac..20ba668 100644 --- a/api/src/consts.rs +++ b/api/src/consts.rs @@ -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;