From d39f2f180e498d06256766eca7625317817dc446 Mon Sep 17 00:00:00 2001 From: Some Random Crypto Guy Date: Wed, 18 Dec 2024 12:01:18 +0000 Subject: [PATCH] set fork height --- src/hardforks/hardforks.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/hardforks/hardforks.cpp b/src/hardforks/hardforks.cpp index 6ef62e4..7bb5f06 100644 --- a/src/hardforks/hardforks.cpp +++ b/src/hardforks/hardforks.cpp @@ -36,7 +36,10 @@ const hardfork_t mainnet_hard_forks[] = { { 1, 1, 0, 1341378000 }, // 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 }, + { 2, 89800, 0, 1729518000 }, + + // version 3 starts from block 121100, which is on or around the 19th of December, 2024. Fork time finalised on 2024-12-18. No fork voting occurs for the v3 fork. + { 3, 121100, 0, 1734516900 }, }; 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);