File tree 1 file changed +13
-0
lines changed
1 file changed +13
-0
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
+ SudoUncheckedSetCode ,
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
@@ -688,6 +689,7 @@ impl InstanceFilter<RuntimeCall> for ProxyType {
688
689
| RuntimeCall :: SubtensorModule ( pallet_subtensor:: Call :: burned_register { .. } )
689
690
| RuntimeCall :: Triumvirate ( ..)
690
691
| RuntimeCall :: SubtensorModule ( pallet_subtensor:: Call :: set_root_weights { .. } )
692
+ | RuntimeCall :: Sudo ( ..)
691
693
) ,
692
694
ProxyType :: Triumvirate => matches ! (
693
695
c,
@@ -714,6 +716,17 @@ impl InstanceFilter<RuntimeCall> for ProxyType {
714
716
c,
715
717
RuntimeCall :: SubtensorModule ( pallet_subtensor:: Call :: set_root_weights { .. } )
716
718
) ,
719
+ ProxyType :: SudoUncheckedSetCode => match c {
720
+ RuntimeCall :: Sudo ( pallet_sudo:: Call :: sudo_unchecked_weight { call, weight : _ } ) => {
721
+ let inner_call: RuntimeCall = * call. clone ( ) ;
722
+
723
+ matches ! (
724
+ inner_call,
725
+ RuntimeCall :: System ( frame_system:: Call :: set_code { .. } )
726
+ )
727
+ }
728
+ _ => false ,
729
+ } ,
717
730
}
718
731
}
719
732
fn is_superset ( & self , o : & Self ) -> bool {
You can’t perform that action at this time.
0 commit comments