Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Merged by Bors] - Log ttd #3339

Closed
wants to merge 12 commits into from
Prev Previous commit
Reduce prep time to 1 week
  • Loading branch information
paulhauner committed Jul 20, 2022
commit 04dcdae24ecb0655238596f06dab993febd53820
4 changes: 1 addition & 3 deletions beacon_node/beacon_chain/src/merge_readiness.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,8 @@ use std::fmt::Write;
use types::*;

/// The time before the Bellatrix fork when we will start issuing warnings about preparation.
///
/// Currently set to two and a half weeks.
const SECONDS_IN_A_WEEK: u64 = 604800;
pub const MERGE_READINESS_PREPARATION_SECONDS: u64 = SECONDS_IN_A_WEEK * 5 / 2;
pub const MERGE_READINESS_PREPARATION_SECONDS: u64 = SECONDS_IN_A_WEEK;

#[derive(Default, Debug)]
pub struct MergeConfig {
Expand Down