mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
add testnet fork heights
This commit is contained in:
parent
f879d48df7
commit
9d31efa09e
1 changed files with 10 additions and 18 deletions
|
@ -45,24 +45,16 @@ const hardfork_t mainnet_hard_forks[] = {
|
|||
const size_t num_mainnet_hard_forks = sizeof(mainnet_hard_forks) / sizeof(mainnet_hard_forks[0]);
|
||||
|
||||
const hardfork_t testnet_hard_forks[] = {
|
||||
// version 1 from the start of the blockchain
|
||||
{ 1, 1, 0, 1341378000 },
|
||||
|
||||
// version 2 starts from block 624634, which is on or around the 23rd of November, 2015. Fork time finalised on 2015-11-20. No fork voting occurs for the v2 fork.
|
||||
{ 2, 624634, 0, 1445355000 },
|
||||
|
||||
// versions 3-5 were passed in rapid succession from September 18th, 2016
|
||||
{ 3, 800500, 0, 1472415034 },
|
||||
{ 4, 801219, 0, 1472415035 },
|
||||
{ 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
|
||||
|
||||
{ 6, 971400, 0, 1501709789 },
|
||||
{ 7, 1057027, 0, 1512211236 },
|
||||
{ 8, 1057058, 0, 1533211200 },
|
||||
{ 9, 1057778, 0, 1533297600 },
|
||||
{ 10, 1154318, 0, 1550153694 },
|
||||
{ 11, 1155038, 0, 1550225678 },
|
||||
{ 12, 1308737, 0, 1569582000 },
|
||||
{ 7, 1, 0, 1519605000 },
|
||||
{ 8, 5, 0, 1524214739 },
|
||||
{ 9, 10, 0, 1538689773 },
|
||||
{ 10, 15, 0, 1541700352 },
|
||||
{ 11, 20, 0, 1549238400 },
|
||||
{ 12, 25, 0, 1549318761 },
|
||||
{ 13, 30, 0, 1559292691 },
|
||||
{ 14, 35, 0, 1559292774 },
|
||||
{ 15, 40, 0, 1573280497 },
|
||||
{ 16, 45, 0, 1589210508 },
|
||||
};
|
||||
const size_t num_testnet_hard_forks = sizeof(testnet_hard_forks) / sizeof(testnet_hard_forks[0]);
|
||||
|
||||
|
|
Loading…
Reference in a new issue