Skip to content

Commit c1a9211

Browse files
authored
Merge pull request #931 from opentensor/feat/add-setcode-proxy
[feat] add SetCode proxy type
2 parents 4ad316e + 4b22f4b commit c1a9211

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

runtime/src/lib.rs

+13
Original file line numberDiff line numberDiff line change
@@ -643,6 +643,7 @@ pub enum ProxyType {
643643
Transfer,
644644
SmallTransfer,
645645
RootWeights,
646+
SudoUncheckedSetCode,
646647
}
647648
// Transfers below SMALL_TRANSFER_LIMIT are considered small transfers
648649
pub const SMALL_TRANSFER_LIMIT: Balance = 500_000_000; // 0.5 TAO
@@ -688,6 +689,7 @@ impl InstanceFilter<RuntimeCall> for ProxyType {
688689
| RuntimeCall::SubtensorModule(pallet_subtensor::Call::burned_register { .. })
689690
| RuntimeCall::Triumvirate(..)
690691
| RuntimeCall::SubtensorModule(pallet_subtensor::Call::set_root_weights { .. })
692+
| RuntimeCall::Sudo(..)
691693
),
692694
ProxyType::Triumvirate => matches!(
693695
c,
@@ -714,6 +716,17 @@ impl InstanceFilter<RuntimeCall> for ProxyType {
714716
c,
715717
RuntimeCall::SubtensorModule(pallet_subtensor::Call::set_root_weights { .. })
716718
),
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+
},
717730
}
718731
}
719732
fn is_superset(&self, o: &Self) -> bool {

0 commit comments

Comments
 (0)