Skip to content

Commit

Permalink
add ParachainStaking into our allowed schedule (#397)
Browse files Browse the repository at this point in the history
  • Loading branch information
v9n authored Aug 1, 2023
1 parent 8d9ae59 commit 005969b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions runtime/neumann/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -849,6 +849,7 @@ impl Contains<RuntimeCall> for ScheduleAllowList {
match c {
RuntimeCall::System(_) => true,
RuntimeCall::Balances(_) => true,
RuntimeCall::ParachainStaking(_) => true,
_ => false,
}
}
Expand Down
1 change: 1 addition & 0 deletions runtime/oak/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -869,6 +869,7 @@ impl Contains<RuntimeCall> for ScheduleAllowList {
match c {
RuntimeCall::System(_) => true,
RuntimeCall::Balances(_) => 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 @@ -878,6 +878,7 @@ impl Contains<RuntimeCall> for ScheduleAllowList {
match c {
RuntimeCall::System(_) => true,
RuntimeCall::Balances(_) => true,
RuntimeCall::ParachainStaking(_) => true,
_ => false,
}
}
Expand Down

0 comments on commit 005969b

Please sign in to comment.