From 798457ebb159f6f6e21f4b5c6dd3e5f6d7fa2ffd Mon Sep 17 00:00:00 2001 From: Hardhat Chad Date: Wed, 2 Apr 2025 11:04:54 -0400 Subject: [PATCH] remove 50% limit --- program/src/mine.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/program/src/mine.rs b/program/src/mine.rs index 85d309a..2583bef 100644 --- a/program/src/mine.rs +++ b/program/src/mine.rs @@ -146,7 +146,7 @@ pub fn process_mine(accounts: &[AccountInfo], data: &[u8]) -> ProgramResult { // // The boost take rate is capped at 50% of the net reward. This protects miners from excessively // large boost incentives that would overly skew the distribution of rewards. - let boost_bps = boost.multiplier.min(DENOMINATOR_BPS / 2); + let boost_bps = boost.multiplier; let net_boost_reward = if t < boost.expires_at { (net_reward as u128 * boost_bps as u128 / DENOMINATOR_BPS as u128) as u64 } else {