add the correct indirection to reward points for backing (#3082)

This commit is contained in:
Robert Habermeier
2021-05-22 19:01:37 -05:00
committed by GitHub
parent 75cb6a1bd4
commit ec43a848b9
@@ -23,6 +23,7 @@
use primitives::v1::ValidatorIndex; use primitives::v1::ValidatorIndex;
use pallet_staking::SessionInterface; use pallet_staking::SessionInterface;
use crate::shared;
/// The amount of era points given by backing a candidate that is included. /// The amount of era points given by backing a candidate that is included.
pub const BACKING_POINTS: u32 = 20; pub const BACKING_POINTS: u32 = 20;
@@ -30,26 +31,99 @@ pub const BACKING_POINTS: u32 = 20;
/// Rewards validators for participating in parachains with era points in pallet-staking. /// Rewards validators for participating in parachains with era points in pallet-staking.
pub struct RewardValidatorsWithEraPoints<C>(sp_std::marker::PhantomData<C>); pub struct RewardValidatorsWithEraPoints<C>(sp_std::marker::PhantomData<C>);
fn reward_by_indices<C, I>(points: u32, indices: I) where fn validators_to_reward<C, T, I>(validators: &'_ [T], indirect_indices: I) -> impl IntoIterator<Item=&'_ T> where
C: pallet_staking::Config, C: shared::Config,
I: IntoIterator<Item = ValidatorIndex> I: IntoIterator<Item = ValidatorIndex>
{ {
// Fetch the validators from the _session_ because sessions are offset from eras let validator_indirection = <shared::Module<C>>::active_validator_indices();
// and we are rewarding for behavior in current session.
let validators = C::SessionInterface::validators();
let rewards = indices.into_iter()
.filter_map(|i| validators.get(i.0 as usize).map(|v| v.clone()))
.map(|v| (v, points));
<pallet_staking::Module<C>>::reward_by_ids(rewards); indirect_indices.into_iter()
.filter_map(move |i| validator_indirection.get(i.0 as usize).map(|v| v.clone()))
.filter_map(move |i| validators.get(i.0 as usize))
} }
impl<C> crate::inclusion::RewardValidators for RewardValidatorsWithEraPoints<C> impl<C> crate::inclusion::RewardValidators for RewardValidatorsWithEraPoints<C>
where C: pallet_staking::Config where C: pallet_staking::Config + shared::Config,
{ {
fn reward_backing(validators: impl IntoIterator<Item=ValidatorIndex>) { fn reward_backing(indirect_indices: impl IntoIterator<Item=ValidatorIndex>) {
reward_by_indices::<C, _>(BACKING_POINTS, validators); // Fetch the validators from the _session_ because sessions are offset from eras
// and we are rewarding for behavior in current session.
let validators = C::SessionInterface::validators();
let rewards = validators_to_reward::<C, _, _>(&validators, indirect_indices)
.into_iter()
.map(|v| (v.clone(), BACKING_POINTS));
<pallet_staking::Module<C>>::reward_by_ids(rewards);
} }
fn reward_bitfields(_validators: impl IntoIterator<Item=ValidatorIndex>) { } fn reward_bitfields(_validators: impl IntoIterator<Item=ValidatorIndex>) { }
} }
#[cfg(test)]
mod tests {
use super::*;
use primitives::v1::ValidatorId;
use crate::configuration::HostConfiguration;
use crate::mock::{new_test_ext, MockGenesisConfig, Shared, Test};
use keyring::Sr25519Keyring;
#[test]
fn rewards_based_on_indirection() {
let validators = vec![
Sr25519Keyring::Alice,
Sr25519Keyring::Bob,
Sr25519Keyring::Charlie,
Sr25519Keyring::Dave,
Sr25519Keyring::Ferdie,
];
fn validator_pubkeys(val_ids: &[Sr25519Keyring]) -> Vec<ValidatorId> {
val_ids.iter().map(|v| v.public().into()).collect()
}
new_test_ext(MockGenesisConfig::default()).execute_with(|| {
let mut config = HostConfiguration::default();
config.max_validators = None;
let pubkeys = validator_pubkeys(&validators);
let shuffled_pubkeys = Shared::initializer_on_new_session(
1,
[1; 32],
&config,
pubkeys,
);
assert_eq!(
shuffled_pubkeys,
validator_pubkeys(&[
Sr25519Keyring::Ferdie,
Sr25519Keyring::Bob,
Sr25519Keyring::Charlie,
Sr25519Keyring::Dave,
Sr25519Keyring::Alice,
])
);
assert_eq!(
Shared::active_validator_indices(),
vec![
ValidatorIndex(4),
ValidatorIndex(1),
ValidatorIndex(2),
ValidatorIndex(3),
ValidatorIndex(0),
]
);
assert_eq!(
validators_to_reward::<Test, _, _>(
&validators,
vec![ValidatorIndex(0), ValidatorIndex(1), ValidatorIndex(2)],
).into_iter().copied().collect::<Vec<_>>(),
vec![Sr25519Keyring::Ferdie, Sr25519Keyring::Bob, Sr25519Keyring::Charlie],
);
})
}
}