1
2
3
4
5
6
7
8
9
10
11
12
13
// --- paritytech ---
pub use pallet_session::historical as pallet_session_historical;

// --- paritytech ---
use pallet_session_historical::Config;
// --- darwinia-network ---
use crate::*;
use darwinia_staking::{Exposure, ExposureOf};

impl Config for Runtime {
	type FullIdentification = Exposure<AccountId, Balance, Balance>;
	type FullIdentificationOf = ExposureOf<Self>;
}