Skip to content

Commit

Permalink
Update base_layer/core/src/consensus/emission.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
stringhandler authored Oct 3, 2022
1 parent a6f9c57 commit c64def6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base_layer/core/src/consensus/emission.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ impl EmissionSchedule {
/// We can then apply a very fast multiplication using bitwise operations. If the decay factor, ϵ, is represented
/// in the array `**k**` then
/// ```
/// intfloor(x, (1 - ϵ)) = x - sum(x >> k_i)
/// intfloor(x, (1 - ϵ)) = x - sum(x >> k_i)
/// ```
///
/// Now, why use (1 - ϵ), and not the decay rate, `f` directly?
Expand Down

0 comments on commit c64def6

Please sign in to comment.