From bf02e3b14399aa9cf394ad5384ea95f4119e45e8 Mon Sep 17 00:00:00 2001 From: dEBRUYNE-1 Date: Sat, 26 Sep 2020 09:31:13 +0200 Subject: [PATCH] Add informational comments for recently added HF heights (mainnet) --- src/hardforks/hardforks.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/hardforks/hardforks.cpp b/src/hardforks/hardforks.cpp index 9055b92e3..2fa514aef 100644 --- a/src/hardforks/hardforks.cpp +++ b/src/hardforks/hardforks.cpp @@ -68,7 +68,10 @@ const hardfork_t mainnet_hard_forks[] = { // version 12 starts from block 1978433, which is on or around the 30th of November, 2019. Fork time finalised on 2019-10-18. { 12, 1978433, 0, 1571419280 }, + // version 13 starts from block 2210000, which is on or around the 17th of October, 2020. Fork time finalised on 2019-09-02. { 13, 2210000, 0, 1598180817 }, + + // version 14 starts from block 2210720, which is on or around the 18th of October, 2020. Fork time finalised on 2019-09-02. { 14, 2210720, 0, 1598180818 }, }; const size_t num_mainnet_hard_forks = sizeof(mainnet_hard_forks) / sizeof(mainnet_hard_forks[0]);