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);