update comment (#32099)

This commit is contained in:
Jeff Washington (jwash) 2023-06-13 12:54:38 -05:00 committed by GitHub
parent 7c5c70a522
commit 446b82afba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1140,7 +1140,7 @@ struct PartitionedRewardsCalculation {
#[allow(dead_code)]
#[derive(Default)]
/// result of calculating the stake rewards at end of epoch
/// result of calculating the stake rewards at beginning of new epoch
struct StakeRewardCalculation {
/// each individual stake account to reward
stake_rewards: StakeRewards,
@ -1149,7 +1149,7 @@ struct StakeRewardCalculation {
}
#[allow(dead_code)]
/// result of calculating the stake rewards at end of epoch
/// result of calculating the stake rewards at beginning of new epoch
struct StakeRewardCalculationPartitioned {
/// each individual stake account to reward, grouped by partition
stake_rewards: Vec<StakeRewards>,