Skip to content

Commit

Permalink
change end of support
Browse files Browse the repository at this point in the history
  • Loading branch information
oxarbitrage committed Oct 11, 2024
1 parent c7bd205 commit 20dd8e2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions zebrad/src/components/sync/end_of_support.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use zebra_chain::{
use crate::application::release_version;

/// The estimated height that this release will be published.
pub const ESTIMATED_RELEASE_HEIGHT: u32 = 2_626_500;
pub const ESTIMATED_RELEASE_HEIGHT: u32 = 2_678_363;

/// The maximum number of days after `ESTIMATED_RELEASE_HEIGHT` where a Zebra server will run
/// without halting.
Expand All @@ -22,8 +22,8 @@ pub const ESTIMATED_RELEASE_HEIGHT: u32 = 2_626_500;
///
/// - Zebra will exit with a panic if the current tip height is bigger than the `ESTIMATED_RELEASE_HEIGHT`
/// plus this number of days.
/// - Currently set to 14 weeks.
pub const EOS_PANIC_AFTER: u32 = 70;
/// - Currently set to 5 weeks to end support before Mainnet Nu6 activation at block [`2_726_400`](https://zips.z.cash/zip-0253).
pub const EOS_PANIC_AFTER: u32 = 35;

/// The number of days before the end of support where Zebra will display warnings.
pub const EOS_WARN_AFTER: u32 = EOS_PANIC_AFTER - 14;
Expand Down

0 comments on commit 20dd8e2

Please sign in to comment.