Skip to content

Commit d646cc8

Browse files
author
unconst
committed
changes
1 parent 7370882 commit d646cc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pallets/subtensor/src/coinbase/run_coinbase.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ impl<T: Config> Pallet<T> {
191191
// Get root proportional dividends.
192192
let root_proportion: I96F32 = (total_root_tao * tao_weight) / ((total_root_tao * tao_weight) + total_subnet_alpha);
193193
// Get root proportion of alpha_out.
194-
let root_proportion_of_alpha_out: I96F32 = root_proportion * alpha_out_emission;
194+
let root_proportion_of_alpha_out: I96F32 = root_proportion * alpha_out_emission * I96F32::from_num( 0.41 );
195195
// Increase root proportion immediately on alpha out
196196
SubnetAlphaOut::<T>::mutate(netuid, |total| *total = total.saturating_add(root_proportion_of_alpha_out.to_num::<u64>()));
197197
// Subtract root proporiton from alpha_out_emission

0 commit comments

Comments
 (0)