From b264a5a5b15bcea857422efa7b26a9f262710cc3 Mon Sep 17 00:00:00 2001 From: Hardhat Chad Date: Fri, 10 May 2024 15:18:13 +0000 Subject: [PATCH] max epoch rewards --- src/consts.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/consts.rs b/src/consts.rs index 0b687ba..53e55a8 100644 --- a/src/consts.rs +++ b/src/consts.rs @@ -35,7 +35,7 @@ pub const MAX_SUPPLY: u64 = ONE_ORE.saturating_mul(42_000_000); pub const TARGET_EPOCH_REWARDS: u64 = ONE_ORE.saturating_mul(EPOCH_MINUTES as u64); /// The maximum quantity of ORE that can be mined per epoch. -pub const MAX_EPOCH_REWARDS: u64 = TARGET_EPOCH_REWARDS.saturating_mul(2); +pub const MAX_EPOCH_REWARDS: u64 = TARGET_EPOCH_REWARDS.saturating_mul(3); /// The quantity of ORE each bus is allowed to issue per epoch. pub const BUS_EPOCH_REWARDS: u64 = MAX_EPOCH_REWARDS.saturating_div(BUS_COUNT as u64);