Remove Sudo from Westmint (#897)

* remove sudo from westmint
This commit is contained in:
joe petrowski
2022-01-13 12:32:19 +01:00
committed by GitHub
parent 167d363087
commit 66e536f773
4 changed files with 0 additions and 17 deletions
@@ -692,11 +692,6 @@ impl pallet_uniques::Config for Runtime {
type WeightInfo = weights::pallet_uniques::WeightInfo<Runtime>;
}
impl pallet_sudo::Config for Runtime {
type Event = Event;
type Call = Call;
}
// Create the runtime by composing the FRAME pallets that were previously configured.
construct_runtime!(
pub enum Runtime where
@@ -739,9 +734,6 @@ construct_runtime!(
// The main stage.
Assets: pallet_assets::{Pallet, Call, Storage, Event<T>} = 50,
Uniques: pallet_uniques::{Pallet, Call, Storage, Event<T>} = 51,
// Sudo pallet to force root
Sudo: pallet_sudo::{Pallet, Call, Config<T>, Storage, Event<T>} = 255,
}
);