diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index c43fbcb85393..8f0c587882f1 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -167,9 +167,12 @@ impl Contains for BaseFilter { Call::Dmp(_) | Call::Ump(_) | Call::Hrmp(_) | - Call::Slots(_) => true, - // Disable paras registration, crowdloans, and auctions for now. - Call::Registrar(_) | Call::Auctions(_) | Call::Crowdloan(_) => false, + Call::Slots(_) | + Call::Registrar(_) | + Call::Auctions(_) | + Call::Crowdloan(_) => true, + // All pallets are allowed, but exhaustive match is defensive + // in the case of adding new pallets. } } }