Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kianenigma committed Dec 23, 2024
1 parent 6243b22 commit 78ac6f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions system-parachains/people/people-kusama/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -496,8 +496,7 @@ impl InstanceFilter<RuntimeCall> for ProxyType {
// `set_subs` and `add_sub` will take and repatriate deposits from the proxied
// account, should not be allowed.
RuntimeCall::Identity(pallet_identity::Call::add_sub { .. }) |
RuntimeCall::Identity(pallet_identity::Call::set_subs { .. }) |
RuntimeCall::Identity(pallet_identity::Call::quit_sub { .. })
RuntimeCall::Identity(pallet_identity::Call::set_subs { .. })
),
ProxyType::CancelProxy => matches!(
c,
Expand Down
2 changes: 1 addition & 1 deletion system-parachains/people/people-polkadot/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ impl InstanceFilter<RuntimeCall> for ProxyType {
// `set_subs` and `add_sub` will take and repatriate deposits from the proxied
// account, should not be allowed.
RuntimeCall::Identity(pallet_identity::Call::add_sub { .. }) |
RuntimeCall::Identity(pallet_identity::Call::set_subs { .. }) |
RuntimeCall::Identity(pallet_identity::Call::set_subs { .. })
),
ProxyType::CancelProxy => matches!(
c,
Expand Down

0 comments on commit 78ac6f3

Please sign in to comment.