Skip to content

Commit

Permalink
fix: compilation errors
Browse files Browse the repository at this point in the history
  • Loading branch information
sander2 committed Jan 14, 2022
1 parent 7def8cc commit 026a2ae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion parachain/runtime/interlay/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1161,7 +1161,7 @@ impl nomination::Config for Runtime {

impl orml_xcm::Config for Runtime {
type Event = Event;
type SovereignOrigin = EnsureRoot;
type SovereignOrigin = EnsureRoot<AccountId>;
}

construct_runtime! {
Expand Down
2 changes: 1 addition & 1 deletion parachain/runtime/kintsugi/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -745,7 +745,7 @@ pub use currency_id_convert::CurrencyIdConvert;

impl orml_xcm::Config for Runtime {
type Event = Event;
type SovereignOrigin = EnsureRoot;
type SovereignOrigin = EnsureRoot<AccountId>;
}

mod currency_id_convert {
Expand Down
2 changes: 1 addition & 1 deletion parachain/runtime/testnet/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1222,7 +1222,7 @@ impl nomination::Config for Runtime {

impl orml_xcm::Config for Runtime {
type Event = Event;
type SovereignOrigin = EnsureRoot;
type SovereignOrigin = EnsureRoot<AccountId>;
}

construct_runtime! {
Expand Down

0 comments on commit 026a2ae

Please sign in to comment.