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
+2 -1
View File
@@ -201,7 +201,7 @@ construct_runtime! {
Inclusion: parachains_inclusion::{Pallet, Call, Storage, Event<T>},
InclusionInherent: parachains_inclusion_inherent::{Pallet, Call, Storage, Inherent},
Scheduler: parachains_scheduler::{Pallet, Call, Storage},
Paras: parachains_paras::{Pallet, Call, Storage},
Paras: parachains_paras::{Pallet, Call, Storage, Event},
Initializer: parachains_initializer::{Pallet, Call, Storage},
Dmp: parachains_dmp::{Pallet, Call, Storage},
Ump: parachains_ump::{Pallet, Call, Storage},
@@ -526,6 +526,7 @@ impl parachains_inclusion::Config for Runtime {
impl parachains_paras::Config for Runtime {
type Origin = Origin;
type Event = Event;
}
parameter_types! {