Skip to content

Commit 659592a

Browse files
authored
Merge pull request #1194 from opentensor/feat/rao-alpha-out-emission-equal-to-alpha-block
[RAO] alpha out emission equal to alpha block
2 parents 5b3b24d + 6cc836b commit 659592a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

pallets/subtensor/src/coinbase/block_emission.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,7 @@ impl<T: Config> Pallet<T> {
6565
}
6666

6767
// Set Alpha in emission.
68-
let alpha_out_emission = I96F32::from_num(2)
69-
.saturating_mul(float_alpha_block_emission)
70-
.saturating_sub(alpha_in_emission);
68+
let alpha_out_emission = float_alpha_block_emission;
7169

7270
// Log results.
7371
log::debug!("{:?} - tao_in_emission: {:?}", netuid, tao_in_emission);

0 commit comments

Comments
 (0)