From 20dd8e2931b04f430deb3f682a76986f63b95eab Mon Sep 17 00:00:00 2001 From: Alfredo Garcia Date: Fri, 11 Oct 2024 11:12:45 -0300 Subject: [PATCH] change end of support --- zebrad/src/components/sync/end_of_support.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/zebrad/src/components/sync/end_of_support.rs b/zebrad/src/components/sync/end_of_support.rs index 553ba2e4b00..1ba3c1863c8 100644 --- a/zebrad/src/components/sync/end_of_support.rs +++ b/zebrad/src/components/sync/end_of_support.rs @@ -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. @@ -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;