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.
1 parent 320f058 commit 7232e84Copy full SHA for 7232e84
pallets/subtensor/src/coinbase/run_coinbase.rs
@@ -48,7 +48,7 @@ impl<T: Config> Pallet<T> {
48
// --- 3. Drain the subnet block emission and accumulate it as subnet emission, which increases until the tempo is reached in #4.
49
// subnet_blockwise_emission -> subnet_pending_emission
50
for netuid in subnets.clone().iter() {
51
- if *netuid == 0 && !Self::is_registration_allowed(*netuid) {
+ if *netuid == 0 || !Self::is_registration_allowed(*netuid) {
52
continue;
53
}
54
// --- 3.1 Get the network's block-wise emission amount.
0 commit comments