Skip to content

Commit

Permalink
adjust values to avoid zero devision
Browse files Browse the repository at this point in the history
  • Loading branch information
mateuszaaa committed Dec 14, 2024
1 parent b61ddf0 commit aabd12a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions rollup/runtime/src/runtime_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1006,8 +1006,10 @@ pub mod config {
pub const StakingSplit: Perbill = Perbill::from_parts(235300000); // 4'800'120
pub const SequencerSplit: Perbill = Perbill::from_parts(117650000); // 2'400'060
pub const ImmediateTGEReleasePercent: Percent = Percent::from_percent(20);
pub const TGEReleasePeriod: u32 = 0u32; // 2 years
pub const TGEReleaseBegin: u32 = 0u32; // Two weeks into chain start
// Just some safe values to avoid zero diision etc
// TGE happens on L1 either way
pub const TGEReleasePeriod: u32 = 100u32; // 2 years
pub const TGEReleaseBegin: u32 = 10u32; // Two weeks into chain start
}
}

Expand Down

0 comments on commit aabd12a

Please sign in to comment.