diff options
author | luigi1111 <luigi1111w@gmail.com> | 2019-10-24 18:57:05 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2019-10-24 18:57:05 -0500 |
commit | cc46f05f1f21da4061588ffd317afa13aa379b91 (patch) | |
tree | 4beb8e3a5aa2618b003f2e8b82ab14839f83d4a0 | |
parent | Merge pull request #6016 (diff) | |
parent | v12 fork heights (diff) | |
download | monero-cc46f05f1f21da4061588ffd317afa13aa379b91.tar.xz |
Merge pull request #6002
0136bf7 v12 fork heights (tevador)
-rw-r--r-- | src/hardforks/hardforks.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/hardforks/hardforks.cpp b/src/hardforks/hardforks.cpp index 41aa3e9cb..7ad09dbef 100644 --- a/src/hardforks/hardforks.cpp +++ b/src/hardforks/hardforks.cpp @@ -64,6 +64,9 @@ const hardfork_t mainnet_hard_forks[] = { // version 11 starts from block 1788720, which is on or around the 10th of March, 2019. Fork time finalised on 2019-02-15. { 11, 1788720, 0, 1550225678 }, + + // 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 }, }; 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 = 1009826; @@ -106,5 +109,6 @@ const hardfork_t stagenet_hard_forks[] = { { 9, 177176, 0, 1537821771 }, { 10, 269000, 0, 1550153694 }, { 11, 269720, 0, 1550225678 }, + { 12, 454721, 0, 1571419280 }, }; const size_t num_stagenet_hard_forks = sizeof(stagenet_hard_forks) / sizeof(stagenet_hard_forks[0]); |