Skip to content

Commit

Permalink
Coretime: Use Superuser for sending the transact calls (#2793)
Browse files Browse the repository at this point in the history
  • Loading branch information
bkchr authored Dec 22, 2023
1 parent ecbbb5a commit 753967a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion polkadot/runtime/parachains/src/coretime/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ impl<T: Config> OnNewSession<BlockNumberFor<T>> for Pallet<T> {

fn mk_coretime_call(call: crate::coretime::CoretimeCalls) -> Instruction<()> {
Instruction::Transact {
origin_kind: OriginKind::Native,
origin_kind: OriginKind::Superuser,
require_weight_at_most: Weight::from_parts(1000000000, 200000),
call: BrokerRuntimePallets::Broker(call).encode().into(),
}
Expand Down

0 comments on commit 753967a

Please sign in to comment.