Skip to content

Commit

Permalink
hardforks: add block heights for test and mainnet
Browse files Browse the repository at this point in the history
  • Loading branch information
hayzamjs committed Aug 8, 2023
1 parent 1e543e3 commit 485278d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/hardforks/hardforks.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@
const hardfork_t mainnet_hard_forks[] = {
{1, 1, 0, 1341378000},
{12, 2, 0, 1582125473},

//Approximately on 14th of September 2023 (V8)
{16, 820102, 0, 1692005445},
};

const size_t num_mainnet_hard_forks =
Expand All @@ -49,7 +52,9 @@ const uint64_t mainnet_hard_fork_version_1_till = 1;
const hardfork_t testnet_hard_forks[] = {
{1, 1, 0, 1341378000},
{12, 2, 0, 1582125473},
{16, 150, 0, 1691411928},

// Approximately on 14th of August 2023 (V8)
{16, 4700, 0, 1692005445},
};
const size_t num_testnet_hard_forks =
sizeof(testnet_hard_forks) / sizeof(testnet_hard_forks[0]);
Expand Down

0 comments on commit 485278d

Please sign in to comment.