Skip to content

Commit

Permalink
Merge pull request #473 from sander2/fix/compilation-error
Browse files Browse the repository at this point in the history
fix: compilation errors
  • Loading branch information
sander2 authored Jan 14, 2022
2 parents 7def8cc + 026a2ae commit b012ef1
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 b012ef1

Please sign in to comment.