From 1df18ca6a440a4cd8bee4783b96e0c0052c65883 Mon Sep 17 00:00:00 2001 From: Some Random Crypto Guy Date: Tue, 22 Oct 2024 12:04:03 +0100 Subject: [PATCH] added hard fork 2 for v0.6.0 --- src/hardforks/hardforks.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hardforks/hardforks.cpp b/src/hardforks/hardforks.cpp index ceb7cac..5905df4 100644 --- a/src/hardforks/hardforks.cpp +++ b/src/hardforks/hardforks.cpp @@ -35,8 +35,8 @@ const hardfork_t mainnet_hard_forks[] = { // version 1 from the start of the blockchain { 1, 1, 0, 1341378000 }, - // version 2 starts from block 1000, which is on or around the 20th of March, 2016. Fork time finalised on 2015-09-20. No fork voting occurs for the v2 fork. - //{ 2, 1000, 0, 1442763710 }, + // version 2 starts from block 89800, which is on or around the 4th of November, 2024. Fork time finalised on 2024-10-21. No fork voting occurs for the v2 fork. + { 2, 89800, 0, 1729518000 }, }; const size_t num_mainnet_hard_forks = sizeof(mainnet_hard_forks) / sizeof(mainnet_hard_forks[0]); const uint64_t mainnet_hard_fork_version_1_till = ((uint64_t)-1);