Do not require Ord for pallet_offences::Config::IdentificationTuple (#11563)

This commit is contained in:
MOZGIII
2022-06-01 13:13:24 +04:00
committed by GitHub
parent f81e306cf5
commit 8e9639d2ff
+1 -1
View File
@@ -59,7 +59,7 @@ pub mod pallet {
/// The overarching event type.
type Event: From<Event> + IsType<<Self as frame_system::Config>::Event>;
/// Full identification of the validator.
type IdentificationTuple: Parameter + Ord;
type IdentificationTuple: Parameter;
/// A handler called for every offence report.
type OnOffenceHandler: OnOffenceHandler<Self::AccountId, Self::IdentificationTuple, Weight>;
}