From 9d0da95bc88f7fe7b006aa5eb4fcccd205cd42f6 Mon Sep 17 00:00:00 2001 From: Hardhat Chad Date: Mon, 12 Aug 2024 16:24:58 +0000 Subject: [PATCH] comment --- 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 bcc44d4..9a9c15d 100644 --- a/program/src/mine.rs +++ b/program/src/mine.rs @@ -160,7 +160,7 @@ pub fn process_mine<'a, 'info>(accounts: &'a [AccountInfo<'info>], data: &[u8]) // Limit payout amount to whatever is left in the bus. // - // Busses are limited to distributing 1 ORE per epoch. This is also the maximum amount a miner can earn + // Busses are limited to distributing 1 ORE per epoch. This is also the maximum amount that will be paid out // for any given hash. let reward_actual = reward.min(bus.rewards).min(ONE_ORE);