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 0b49118 commit 81c8905Copy full SHA for 81c8905
pallets/subtensor/src/coinbase/run_coinbase.rs
@@ -232,8 +232,7 @@ impl<T: Config> Pallet<T> {
232
let child_emission_take: u64 = childkey_take_proportion
233
.saturating_mul(parent_emission)
234
.to_num::<u64>();
235
- total_childkey_take =
236
- total_childkey_take.saturating_add(child_emission_take);
+ total_childkey_take = total_childkey_take.saturating_add(child_emission_take);
237
// NOTE: Only the validation emission should be split amongst parents.
238
239
// --- 4.4 Compute the remaining parent emission after the childkey's share is deducted.
0 commit comments