Skip to content

Commit

Permalink
allow xtokens pallet in ScheduleAllowList (#487)
Browse files Browse the repository at this point in the history
  • Loading branch information
v9n authored Dec 12, 2023
1 parent 22806bc commit 7eae5b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions runtime/oak/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -885,6 +885,7 @@ impl Contains<RuntimeCall> for ScheduleAllowList {
match c {
RuntimeCall::System(_) => true,
RuntimeCall::Balances(_) => true,
RuntimeCall::XTokens(_) => true,
RuntimeCall::ParachainStaking(_) => true,
_ => false,
}
Expand Down
1 change: 1 addition & 0 deletions runtime/turing/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -881,6 +881,7 @@ impl Contains<RuntimeCall> for ScheduleAllowList {
RuntimeCall::System(_) => true,
RuntimeCall::Balances(_) => true,
RuntimeCall::ParachainStaking(_) => true,
RuntimeCall::XTokens(_) => true,
_ => false,
}
}
Expand Down

0 comments on commit 7eae5b2

Please sign in to comment.