This commit is contained in:
Hardhat Chad
2025-10-03 09:19:23 -07:00
parent 9d4bc355e4
commit 3c4d7c6258
3 changed files with 6 additions and 3 deletions

View File

@@ -29,6 +29,9 @@ pub const ONE_MINUTE_SLOTS: u64 = 150;
/// The number of slots in one hour.
pub const ONE_HOUR_SLOTS: u64 = 60 * ONE_MINUTE_SLOTS;
/// The number of slots in 12 hours.
pub const TWELVE_HOURS_SLOTS: u64 = 12 * ONE_HOUR_SLOTS;
/// The number of slots in one day.
pub const ONE_DAY_SLOTS: u64 = 24 * ONE_HOUR_SLOTS;