Add informational comments for recently added HF heights (mainnet)

This commit is contained in:
dEBRUYNE-1 2020-09-26 09:31:13 +02:00 committed by GitHub
parent d27d4526fe
commit bf02e3b143
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -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]);