From 1a98baedaacba5647d872bae8b36eb66bda60a96 Mon Sep 17 00:00:00 2001 From: johnreedv Date: Tue, 5 Nov 2024 14:15:21 -0800 Subject: [PATCH] add set_childkey_take to ChildKeys ProxyType --- runtime/src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 9bd636da4..9fe6c5854 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -722,6 +722,9 @@ impl InstanceFilter for ProxyType { ProxyType::ChildKeys => matches!( c, RuntimeCall::SubtensorModule(pallet_subtensor::Call::set_children { .. }) + | RuntimeCall::SubtensorModule( + pallet_subtensor::Call::set_childkey_take { .. } + ) ), } }