We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f197a2 commit 5b3d4e6Copy full SHA for 5b3d4e6
runtime/src/lib.rs
@@ -726,7 +726,15 @@ impl InstanceFilter<RuntimeCall> for ProxyType {
726
fn filter(&self, c: &RuntimeCall) -> bool {
727
match self {
728
ProxyType::Any => true,
729
- ProxyType::NonTransfer => !matches!(c, RuntimeCall::Balances(..)),
+ ProxyType::NonTransfer => !matches!(
730
+ c,
731
+ RuntimeCall::Balances(..)
732
+ | RuntimeCall::SubtensorModule(pallet_subtensor::Call::transfer_stake { .. })
733
+ | RuntimeCall::SubtensorModule(
734
+ pallet_subtensor::Call::schedule_swap_coldkey { .. }
735
+ )
736
+ | RuntimeCall::SubtensorModule(pallet_subtensor::Call::swap_coldkey { .. })
737
+ ),
738
ProxyType::NonFungibile => !matches!(
739
c,
740
RuntimeCall::Balances(..)
0 commit comments