diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-03-24 10:01:15 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-03-24 10:01:15 +0000 |
commit | 5a7983585e8814974613c76daaaa65b4daee60ac (patch) | |
tree | 29af2a90493005d1fb4fd78f177b573ff6e25826 /src | |
parent | Merge pull request #1912 (diff) | |
download | monero-5a7983585e8814974613c76daaaa65b4daee60ac.tar.xz |
blockchain: offset v5 addition date on testnet
to silence the update warning, since v5 was done very early
on testnet
Diffstat (limited to 'src')
-rw-r--r-- | src/cryptonote_core/blockchain.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptonote_core/blockchain.cpp b/src/cryptonote_core/blockchain.cpp index f9a17bcb5..daa289f21 100644 --- a/src/cryptonote_core/blockchain.cpp +++ b/src/cryptonote_core/blockchain.cpp @@ -117,7 +117,7 @@ static const struct { // versions 3-5 were passed in rapid succession from September 18th, 2016 { 3, 800500, 0, 1472415034 }, { 4, 801219, 0, 1472415035 }, - { 5, 802660, 0, 1472415036 }, + { 5, 802660, 0, 1472415036 + 86400*180 }, // add 5 months on testnet to shut the update warning up since there's a large gap to v6 }; static const uint64_t testnet_hard_fork_version_1_till = 624633; |