From e4fce3d524195209dde1fe3dc1949f977c089f30 Mon Sep 17 00:00:00 2001 From: Hardhat Chad <155858888+HardhatChad@users.noreply.github.com> Date: Sun, 24 Mar 2024 17:45:24 -0500 Subject: [PATCH] Update consts.rs --- src/consts.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/consts.rs b/src/consts.rs index 55c4593..daaf99b 100644 --- a/src/consts.rs +++ b/src/consts.rs @@ -1,9 +1,9 @@ use solana_program::{keccak::Hash, pubkey, pubkey::Pubkey}; -/// The unix timestamp after which mining is allowed. +/// The unix timestamp after which mining can begin. pub const START_AT: i64 = 1712070900; -/// The initial reward rate to payout in the first epoch. +/// The reward rate to intialize the program with. pub const INITIAL_REWARD_RATE: u64 = 10u64.pow(3u32); /// The mining difficulty to initialize the program with.