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.
2 parents c7a3238 + 66f0097 commit a2016eeCopy full SHA for a2016ee
pallets/subtensor/src/coinbase/run_coinbase.rs
@@ -249,6 +249,11 @@ impl<T: Config> Pallet<T> {
249
BlocksSinceLastStep::<T>::mutate(netuid, |total| *total = total.saturating_add(1));
250
}
251
252
+
253
+ // --- 8. Apply pending childkeys of this subnet for the next epoch
254
+ for netuid in subnets.iter() {
255
+ Self::do_set_pending_children(*netuid);
256
+ }
257
258
259
pub fn drain_pending_emission(
0 commit comments