diff --git a/polkadot/runtime/src/lib.rs b/polkadot/runtime/src/lib.rs index 29712093ae..40dcc9ce08 100644 --- a/polkadot/runtime/src/lib.rs +++ b/polkadot/runtime/src/lib.rs @@ -505,15 +505,15 @@ construct_runtime!( // Claims. Usable initially. Claims: claims::{Module, Call, Storage, Event, Config, ValidateUnsigned}, - // Sudo. Usable initially. - // RELEASE: remove this for release build. - Sudo: sudo, - // Parachains stuff; slots are disabled (no auctions initially). The rest are safe as they // have no public dispatchables. Parachains: parachains::{Module, Call, Storage, Config, Inherent, Origin}, Attestations: attestations::{Module, Call, Storage}, Slots: slots::{Module, Call, Storage, Event}, + + // Sudo. Usable initially. + // RELEASE: remove this for release build. + Sudo: sudo, } );