Bump version to 8.1.0 and set HF16/17 fork times (#1295)

This commit is contained in:
Jason Rhinelander 2020-09-30 22:36:25 -03:00 committed by GitHub
parent 58ab1e9c85
commit 915e6109f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 2 deletions

View File

@ -57,7 +57,7 @@ cmake_minimum_required(VERSION 3.10)
message(STATUS "CMake version ${CMAKE_VERSION}")
project(loki
VERSION 8.0.1
VERSION 8.1.0
LANGUAGES CXX C)
set(LOKI_RELEASE_CODENAME "Salty Saga")

View File

@ -73,6 +73,8 @@ static constexpr HardFork::Params mainnet_hard_forks[] =
{ network_version_13_enforce_checkpoints, 385824, 0, 1571850000 }, // 2019-10-23 19:00AEDT
{ network_version_14_blink, 442333, 0, 1578528000 }, // 2020-01-09 00:00UTC
{ network_version_15_lns, 496969, 0, 1585105200 }, // 2020-03-25 14:00AEDT (03:00UTC)
{ network_version_16_pulse, 638900, 0, 1602199800 }, // 2020-10-09 10:30AEDT (23:30UTC, 10-08)
{ network_version_17, 638900 + BLOCKS_EXPECTED_IN_DAYS(180), 0, 1602199800 + 180*24*60*60 }, // HF16 + 180 days
};
static constexpr HardFork::Params testnet_hard_forks[] =

View File

@ -222,7 +222,7 @@ namespace service_nodes {
};
constexpr proof_version MIN_UPTIME_PROOF_VERSIONS[] = {
{cryptonote::network_version_16_pulse, {8,0,0}},
{cryptonote::network_version_16_pulse, {8,1,0}},
{cryptonote::network_version_15_lns, {7,1,2}},
{cryptonote::network_version_14_blink, {6,1,0}},
{cryptonote::network_version_13_enforce_checkpoints, {5,1,0}},