1
2
3
4
5
6
7
8
9
10
11
// --- paritytech ---
use pallet_offences::Config;
use pallet_session::historical::IdentificationTuple;
// --- darwinia-network ---
use crate::*;

impl Config for Runtime {
	type Event = Event;
	type IdentificationTuple = IdentificationTuple<Self>;
	type OnOffenceHandler = Staking;
}