remove unnecessary pub (#31676)

This commit is contained in:
Jeff Washington (jwash) 2023-05-16 15:53:57 -05:00 committed by GitHub
parent e14384d8ff
commit 7c6478da8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1140,7 +1140,7 @@ pub(crate) struct StakeReward {
}
impl StakeReward {
pub fn get_stake_reward(&self) -> i64 {
fn get_stake_reward(&self) -> i64 {
self.stake_reward_info.lamports
}
}