Skip to content

Commit

Permalink
Limit dynamic tempos to stay at 360 blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
gztensor committed May 22, 2024
1 parent 571b334 commit 2642cb0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -788,8 +788,8 @@ parameter_types! {
pub const SubtensorInitialScalingLawPower: u16 = 50; // 0.5
pub const SubtensorInitialMaxAllowedValidators: u16 = 128;
pub const SubtensorInitialTempo: u16 = 99;
pub const SubtensorMinTempo: u16 = 1;
pub const SubtensorMaxTempo: u16 = 720;
pub const SubtensorMinTempo: u16 = 360;
pub const SubtensorMaxTempo: u16 = 360;
pub const SubtensorInitialDifficulty: u64 = 10_000_000;
pub const SubtensorInitialAdjustmentInterval: u16 = 100;
pub const SubtensorInitialAdjustmentAlpha: u64 = 0; // no weight to previous value.
Expand Down

0 comments on commit 2642cb0

Please sign in to comment.