diff --git a/frame/staking/src/lib.rs b/frame/staking/src/lib.rs index f17d09b413606..331095774b741 100644 --- a/frame/staking/src/lib.rs +++ b/frame/staking/src/lib.rs @@ -369,9 +369,9 @@ pub struct ActiveEraInfo { #[derive(PartialEq, Encode, Decode, RuntimeDebug, TypeInfo)] pub struct EraRewardPoints { /// Total number of points. Equals the sum of reward points for each validator. - total: RewardPoint, + pub total: RewardPoint, /// The reward points earned by a given validator. - individual: BTreeMap, + pub individual: BTreeMap, } impl Default for EraRewardPoints {