File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -643,6 +643,7 @@ pub enum ProxyType {
643
643
Transfer ,
644
644
SmallTransfer ,
645
645
RootWeights ,
646
+ ChildKeys ,
646
647
}
647
648
// Transfers below SMALL_TRANSFER_LIMIT are considered small transfers
648
649
pub const SMALL_TRANSFER_LIMIT : Balance = 500_000_000 ; // 0.5 TAO
@@ -708,7 +709,6 @@ impl InstanceFilter<RuntimeCall> for ProxyType {
708
709
c,
709
710
RuntimeCall :: SubtensorModule ( pallet_subtensor:: Call :: add_stake { .. } )
710
711
| RuntimeCall :: SubtensorModule ( pallet_subtensor:: Call :: remove_stake { .. } )
711
- | RuntimeCall :: SubtensorModule ( pallet_subtensor:: Call :: set_children { .. } )
712
712
) ,
713
713
ProxyType :: Registration => matches ! (
714
714
c,
@@ -719,6 +719,10 @@ impl InstanceFilter<RuntimeCall> for ProxyType {
719
719
c,
720
720
RuntimeCall :: SubtensorModule ( pallet_subtensor:: Call :: set_root_weights { .. } )
721
721
) ,
722
+ ProxyType :: ChildKeys => matches ! (
723
+ c,
724
+ RuntimeCall :: SubtensorModule ( pallet_subtensor:: Call :: set_children { .. } )
725
+ ) ,
722
726
}
723
727
}
724
728
fn is_superset ( & self , o : & Self ) -> bool {
You can’t perform that action at this time.
0 commit comments