Skip to content

Commit 7eae5b2

Browse files
authored
allow xtokens pallet in ScheduleAllowList (#487)
1 parent 22806bc commit 7eae5b2

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

runtime/oak/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -885,6 +885,7 @@ impl Contains<RuntimeCall> for ScheduleAllowList {
885885
match c {
886886
RuntimeCall::System(_) => true,
887887
RuntimeCall::Balances(_) => true,
888+
RuntimeCall::XTokens(_) => true,
888889
RuntimeCall::ParachainStaking(_) => true,
889890
_ => false,
890891
}

runtime/turing/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -881,6 +881,7 @@ impl Contains<RuntimeCall> for ScheduleAllowList {
881881
RuntimeCall::System(_) => true,
882882
RuntimeCall::Balances(_) => true,
883883
RuntimeCall::ParachainStaking(_) => true,
884+
RuntimeCall::XTokens(_) => true,
884885
_ => false,
885886
}
886887
}

0 commit comments

Comments
 (0)