Skip to content

Commit

Permalink
Set mainnet v7 fork height to 962600 (1 June 2018)
Browse files Browse the repository at this point in the history
Set stagenet v7 fork height to 100000 (31 May 2018)
  • Loading branch information
stoffu committed May 20, 2018
1 parent 1d1c342 commit 0203370
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/cryptonote_core/blockchain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,12 @@ static const struct {
} mainnet_hard_forks[] = {
// version 1 from the start of the blockchain
{ 1, 1, 0, 1341378000 },

// versions 2, 3, 4, 5 and 6 are skipped, in favor of reducing the cost of adopting the POW change and other consensus updates from Monero
// version 7 starts from block 962600, which is on or around the 1st of June, 2018. Fork time finalised on 2018-05-20.
{ 7, 962600, 0, 1526828224 },
};
static const uint64_t mainnet_hard_fork_version_1_till = 0;
static const uint64_t mainnet_hard_fork_version_1_till = 961099;

static const struct {
uint8_t version;
Expand All @@ -117,6 +121,10 @@ static const struct {
} stagenet_hard_forks[] = {
// version 1 from the start of the blockchain
{ 1, 1, 0, 1341378000 },

// versions 2, 3, 4, 5 and 6 are skipped, in favor of reducing the cost of adopting the POW change and other consensus updates from Monero
// version 7 starts from block 100000, which is on or around the 31st of May, 2018. Fork time finalised on 2018-05-20.
{ 7, 100000, 0, 1526828224 },
};

//------------------------------------------------------------------
Expand Down

0 comments on commit 0203370

Please sign in to comment.