Add Root Functions to Parachains System (#2777)

* Add Root functions to Paras

* note past code

* fix build

* fix test build

* compile fix and force_queue_action
This commit is contained in:
Shawn Tabrizi
2021-03-30 21:54:21 +02:00
committed by GitHub
parent 9ac35d9f2b
commit 02166f4e0c
6 changed files with 83 additions and 6 deletions
@@ -429,7 +429,7 @@ mod tests {
{
System: frame_system::{Pallet, Call, Config, Storage, Event<T>},
Balances: pallet_balances::{Pallet, Call, Storage, Config<T>, Event<T>},
Parachains: paras::{Pallet, Origin, Call, Storage, Config<T>},
Parachains: paras::{Pallet, Origin, Call, Storage, Config<T>, Event},
Registrar: paras_registrar::{Pallet, Call, Storage, Event<T>},
}
);
@@ -486,6 +486,7 @@ mod tests {
impl paras::Config for Test {
type Origin = Origin;
type Event = Event;
}
impl configuration::Config for Test { }