diff --git a/polkadot/runtime/kusama/src/governance/mod.rs b/polkadot/runtime/kusama/src/governance/mod.rs index 3dd4eba2b57ec735ccd64c6dfebcbbaaed47b88c..c2db914f647e32925d519a21b5ee18dd3e834e21 100644 --- a/polkadot/runtime/kusama/src/governance/mod.rs +++ b/polkadot/runtime/kusama/src/governance/mod.rs @@ -82,8 +82,8 @@ impl pallet_referenda::Config for Runtime { type Scheduler = Scheduler; type Currency = Balances; type SubmitOrigin = frame_system::EnsureSigned<AccountId>; - type CancelOrigin = ReferendumCanceller; - type KillOrigin = ReferendumKiller; + type CancelOrigin = EitherOf<EnsureRoot<AccountId>, ReferendumCanceller>; + type KillOrigin = EitherOf<EnsureRoot<AccountId>, ReferendumKiller>; type Slash = Treasury; type Votes = pallet_conviction_voting::VotesOf<Runtime>; type Tally = pallet_conviction_voting::TallyOf<Runtime>;