diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-03-07 15:39:18 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-03-07 17:19:50 +0000 |
commit | 84decbea483357623ad100af3dcca2274c72fec4 (patch) | |
tree | 16ec34690c7376ec6b3f30dcc3a62ed8e686eb9b /src/cryptonote_core | |
parent | Merge pull request #3253 (diff) | |
download | monero-84decbea483357623ad100af3dcca2274c72fec4.tar.xz |
core: add v7 for 1539500 on mainnet
Diffstat (limited to 'src/cryptonote_core')
-rw-r--r-- | src/cryptonote_core/blockchain.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/cryptonote_core/blockchain.cpp b/src/cryptonote_core/blockchain.cpp index d88cc1bf9..f10fb83c9 100644 --- a/src/cryptonote_core/blockchain.cpp +++ b/src/cryptonote_core/blockchain.cpp @@ -106,6 +106,9 @@ static const struct { // version 6 starts from block 1400000, which is on or around the 16th of September, 2017. Fork time finalised on 2017-08-18. { 6, 1400000, 0, 1503046577 }, + + // version 7 starts from block 1539500, which is on or around the 28th of March, 2018. Fork time finalised on 2018-03-07. + { 7, 1539500, 0, 1520436050 }, }; static const uint64_t mainnet_hard_fork_version_1_till = 1009826; |