mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-29 09:07:57 +00:00
ea2d6f898d
Substrate: 31d90c202d6df9ce3837ee55587b604619a912ba
Polkadot: 60df3c55c711c2872872d6220f98b2611340e051
Cumulus: a9630551c2
250 lines
7.5 KiB
Rust
250 lines
7.5 KiB
Rust
// Copyright 2019-2021 Parity Technologies (UK) Ltd.
|
|
// This file is part of Parity Bridges Common.
|
|
|
|
// Parity Bridges Common is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// Parity Bridges Common is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Parity Bridges Common. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//! Substrate session manager that selects 2/3 validators from initial set,
|
|
//! starting from session 2.
|
|
|
|
#![cfg_attr(not(feature = "std"), no_std)]
|
|
|
|
use sp_std::prelude::*;
|
|
|
|
pub use pallet::*;
|
|
|
|
#[frame_support::pallet]
|
|
pub mod pallet {
|
|
use super::*;
|
|
use frame_support::pallet_prelude::*;
|
|
use frame_system::pallet_prelude::*;
|
|
|
|
#[pallet::config]
|
|
#[pallet::disable_frame_system_supertrait_check]
|
|
pub trait Config: pallet_session::Config {}
|
|
|
|
#[pallet::pallet]
|
|
#[pallet::generate_store(pub(super) trait Store)]
|
|
#[pallet::without_storage_info]
|
|
pub struct Pallet<T>(PhantomData<T>);
|
|
|
|
#[pallet::hooks]
|
|
impl<T: Config> Hooks<BlockNumberFor<T>> for Pallet<T> {}
|
|
|
|
#[pallet::call]
|
|
impl<T: Config> Pallet<T> {}
|
|
|
|
/// Validators of first two sessions.
|
|
#[pallet::storage]
|
|
pub(super) type InitialValidators<T: Config> = StorageValue<_, Vec<T::ValidatorId>>;
|
|
}
|
|
|
|
impl<T: Config> pallet_session::SessionManager<T::ValidatorId> for Pallet<T> {
|
|
fn end_session(_: sp_staking::SessionIndex) {}
|
|
fn start_session(_: sp_staking::SessionIndex) {}
|
|
fn new_session(session_index: sp_staking::SessionIndex) -> Option<Vec<T::ValidatorId>> {
|
|
// we don't want to add even more fields to genesis config => just return None
|
|
if session_index == 0 || session_index == 1 {
|
|
return None
|
|
}
|
|
|
|
// the idea that on first call (i.e. when session 1 ends) we're reading current
|
|
// set of validators from session module (they are initial validators) and save
|
|
// in our 'local storage'.
|
|
// then for every session we select (deterministically) 2/3 of these initial
|
|
// validators to serve validators of new session
|
|
let available_validators = InitialValidators::<T>::get().unwrap_or_else(|| {
|
|
let validators = <pallet_session::Pallet<T>>::validators();
|
|
InitialValidators::<T>::put(validators.clone());
|
|
validators
|
|
});
|
|
|
|
Some(Self::select_validators(session_index, &available_validators))
|
|
}
|
|
}
|
|
|
|
impl<T: Config> Pallet<T> {
|
|
/// Select validators for session.
|
|
fn select_validators(
|
|
session_index: sp_staking::SessionIndex,
|
|
available_validators: &[T::ValidatorId],
|
|
) -> Vec<T::ValidatorId> {
|
|
let available_validators_count = available_validators.len();
|
|
let count = sp_std::cmp::max(1, 2 * available_validators_count / 3);
|
|
let offset = session_index as usize % available_validators_count;
|
|
let end = offset + count;
|
|
let session_validators = match end.overflowing_sub(available_validators_count) {
|
|
(wrapped_end, false) if wrapped_end != 0 => available_validators[offset..]
|
|
.iter()
|
|
.chain(available_validators[..wrapped_end].iter())
|
|
.cloned()
|
|
.collect(),
|
|
_ => available_validators[offset..end].to_vec(),
|
|
};
|
|
|
|
session_validators
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
// From construct_runtime macro
|
|
#![allow(clippy::from_over_into)]
|
|
|
|
use super::*;
|
|
use frame_support::{
|
|
parameter_types,
|
|
sp_io::TestExternalities,
|
|
sp_runtime::{
|
|
testing::{Header, UintAuthorityId},
|
|
traits::{BlakeTwo256, ConvertInto, IdentityLookup},
|
|
Perbill, RuntimeAppPublic,
|
|
},
|
|
traits::GenesisBuild,
|
|
weights::Weight,
|
|
BasicExternalities,
|
|
};
|
|
use sp_core::H256;
|
|
|
|
type AccountId = u64;
|
|
|
|
type Block = frame_system::mocking::MockBlock<TestRuntime>;
|
|
type UncheckedExtrinsic = frame_system::mocking::MockUncheckedExtrinsic<TestRuntime>;
|
|
|
|
frame_support::construct_runtime! {
|
|
pub enum TestRuntime where
|
|
Block = Block,
|
|
NodeBlock = Block,
|
|
UncheckedExtrinsic = UncheckedExtrinsic,
|
|
{
|
|
System: frame_system::{Pallet, Call, Config, Storage, Event<T>},
|
|
Session: pallet_session::{Pallet},
|
|
}
|
|
}
|
|
|
|
parameter_types! {
|
|
pub const BlockHashCount: u64 = 250;
|
|
pub const MaximumBlockWeight: Weight = 1024;
|
|
pub const MaximumBlockLength: u32 = 2 * 1024;
|
|
pub const AvailableBlockRatio: Perbill = Perbill::one();
|
|
}
|
|
|
|
impl frame_system::Config for TestRuntime {
|
|
type Origin = Origin;
|
|
type Index = u64;
|
|
type Call = Call;
|
|
type BlockNumber = u64;
|
|
type Hash = H256;
|
|
type Hashing = BlakeTwo256;
|
|
type AccountId = AccountId;
|
|
type Lookup = IdentityLookup<Self::AccountId>;
|
|
type Header = Header;
|
|
type Event = ();
|
|
type BlockHashCount = BlockHashCount;
|
|
type Version = ();
|
|
type PalletInfo = PalletInfo;
|
|
type AccountData = ();
|
|
type OnNewAccount = ();
|
|
type OnKilledAccount = ();
|
|
type BaseCallFilter = frame_support::traits::Everything;
|
|
type SystemWeightInfo = ();
|
|
type BlockWeights = ();
|
|
type BlockLength = ();
|
|
type DbWeight = ();
|
|
type SS58Prefix = ();
|
|
type OnSetCode = ();
|
|
type MaxConsumers = frame_support::traits::ConstU32<16>;
|
|
}
|
|
|
|
parameter_types! {
|
|
pub const Period: u64 = 1;
|
|
pub const Offset: u64 = 0;
|
|
}
|
|
|
|
impl pallet_session::Config for TestRuntime {
|
|
type Event = ();
|
|
type ValidatorId = <Self as frame_system::Config>::AccountId;
|
|
type ValidatorIdOf = ConvertInto;
|
|
type ShouldEndSession = pallet_session::PeriodicSessions<Period, Offset>;
|
|
type NextSessionRotation = pallet_session::PeriodicSessions<Period, Offset>;
|
|
type SessionManager = ();
|
|
type SessionHandler = TestSessionHandler;
|
|
type Keys = UintAuthorityId;
|
|
type WeightInfo = ();
|
|
}
|
|
|
|
impl Config for TestRuntime {}
|
|
|
|
pub struct TestSessionHandler;
|
|
impl pallet_session::SessionHandler<AccountId> for TestSessionHandler {
|
|
const KEY_TYPE_IDS: &'static [sp_runtime::KeyTypeId] = &[UintAuthorityId::ID];
|
|
|
|
fn on_genesis_session<Ks: sp_runtime::traits::OpaqueKeys>(_validators: &[(AccountId, Ks)]) {
|
|
}
|
|
|
|
fn on_new_session<Ks: sp_runtime::traits::OpaqueKeys>(
|
|
_: bool,
|
|
_: &[(AccountId, Ks)],
|
|
_: &[(AccountId, Ks)],
|
|
) {
|
|
}
|
|
|
|
fn on_disabled(_: u32) {}
|
|
}
|
|
|
|
fn new_test_ext() -> TestExternalities {
|
|
let mut t = frame_system::GenesisConfig::default().build_storage::<TestRuntime>().unwrap();
|
|
|
|
let keys = vec![
|
|
(1, 1, UintAuthorityId(1)),
|
|
(2, 2, UintAuthorityId(2)),
|
|
(3, 3, UintAuthorityId(3)),
|
|
(4, 4, UintAuthorityId(4)),
|
|
(5, 5, UintAuthorityId(5)),
|
|
];
|
|
|
|
BasicExternalities::execute_with_storage(&mut t, || {
|
|
for (ref k, ..) in &keys {
|
|
frame_system::Pallet::<TestRuntime>::inc_providers(k);
|
|
}
|
|
});
|
|
|
|
pallet_session::GenesisConfig::<TestRuntime> { keys }
|
|
.assimilate_storage(&mut t)
|
|
.unwrap();
|
|
TestExternalities::new(t)
|
|
}
|
|
|
|
#[test]
|
|
fn shift_session_manager_works() {
|
|
new_test_ext().execute_with(|| {
|
|
let all_accs = vec![1, 2, 3, 4, 5];
|
|
|
|
// at least 1 validator is selected
|
|
assert_eq!(Pallet::<TestRuntime>::select_validators(0, &[1]), vec![1],);
|
|
|
|
// at session#0, shift is also 0
|
|
assert_eq!(Pallet::<TestRuntime>::select_validators(0, &all_accs), vec![1, 2, 3],);
|
|
|
|
// at session#1, shift is also 1
|
|
assert_eq!(Pallet::<TestRuntime>::select_validators(1, &all_accs), vec![2, 3, 4],);
|
|
|
|
// at session#3, we're wrapping
|
|
assert_eq!(Pallet::<TestRuntime>::select_validators(3, &all_accs), vec![4, 5, 1],);
|
|
|
|
// at session#5, we're starting from the beginning again
|
|
assert_eq!(Pallet::<TestRuntime>::select_validators(5, &all_accs), vec![1, 2, 3],);
|
|
});
|
|
}
|
|
}
|