remove derivation of debug in no_std (#5146)

This commit is contained in:
Gavin Wood
2020-03-05 17:00:44 +01:00
committed by GitHub
parent f5dc69b404
commit f7084e5487
+2 -2
View File
@@ -300,7 +300,7 @@ pub type EraIndex = u32;
pub type RewardPoint = u32;
/// Information regarding the active era (era in used in session).
#[derive(Encode, Decode, Debug)]
#[derive(Encode, Decode, RuntimeDebug)]
pub struct ActiveEraInfo<Moment> {
/// Index of era.
index: EraIndex,
@@ -314,7 +314,7 @@ pub struct ActiveEraInfo<Moment> {
/// Reward points of an era. Used to split era total payout between validators.
///
/// This points will be used to reward validators and their respective nominators.
#[derive(PartialEq, Encode, Decode, Default, Debug)]
#[derive(PartialEq, Encode, Decode, Default, RuntimeDebug)]
pub struct EraRewardPoints<AccountId: Ord> {
/// Total number of points. Equals the sum of reward points for each validator.
total: RewardPoint,