Skip to content

Commit 485278d

Browse files
committed
hardforks: add block heights for test and mainnet
1 parent 1e543e3 commit 485278d

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/hardforks/hardforks.cpp

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@
4040
const hardfork_t mainnet_hard_forks[] = {
4141
{1, 1, 0, 1341378000},
4242
{12, 2, 0, 1582125473},
43+
44+
//Approximately on 14th of September 2023 (V8)
45+
{16, 820102, 0, 1692005445},
4346
};
4447

4548
const size_t num_mainnet_hard_forks =
@@ -49,7 +52,9 @@ const uint64_t mainnet_hard_fork_version_1_till = 1;
4952
const hardfork_t testnet_hard_forks[] = {
5053
{1, 1, 0, 1341378000},
5154
{12, 2, 0, 1582125473},
52-
{16, 150, 0, 1691411928},
55+
56+
// Approximately on 14th of August 2023 (V8)
57+
{16, 4700, 0, 1692005445},
5358
};
5459
const size_t num_testnet_hard_forks =
5560
sizeof(testnet_hard_forks) / sizeof(testnet_hard_forks[0]);

0 commit comments

Comments
 (0)