diff --git a/runtime/oak/src/lib.rs b/runtime/oak/src/lib.rs index 89473d69..81d86184 100644 --- a/runtime/oak/src/lib.rs +++ b/runtime/oak/src/lib.rs @@ -885,6 +885,7 @@ impl Contains for ScheduleAllowList { match c { RuntimeCall::System(_) => true, RuntimeCall::Balances(_) => true, + RuntimeCall::XTokens(_) => true, RuntimeCall::ParachainStaking(_) => true, _ => false, } diff --git a/runtime/turing/src/lib.rs b/runtime/turing/src/lib.rs index 23f6a0f5..48b8719e 100644 --- a/runtime/turing/src/lib.rs +++ b/runtime/turing/src/lib.rs @@ -881,6 +881,7 @@ impl Contains for ScheduleAllowList { RuntimeCall::System(_) => true, RuntimeCall::Balances(_) => true, RuntimeCall::ParachainStaking(_) => true, + RuntimeCall::XTokens(_) => true, _ => false, } }