mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
Fix fork height to Oct 6 - block 53666
This commit is contained in:
parent
6177e8e062
commit
2964c22866
3 changed files with 3 additions and 3 deletions
|
@ -95,7 +95,7 @@ Dates are provided in the format YYYY-MM-DD.
|
||||||
| ------------------------------ | -----------| ----------------- | ---------------------- | -------------------------- | ---------------------------------------------------------------------------------- |
|
| ------------------------------ | -----------| ----------------- | ---------------------- | -------------------------- | ---------------------------------------------------------------------------------- |
|
||||||
| 1 | 2018-04-01 | v7 | v0.1.0.0 | v0.1.0.0 | Cryptonight variant 1, ringsize >= 8, sorted inputs
|
| 1 | 2018-04-01 | v7 | v0.1.0.0 | v0.1.0.0 | Cryptonight variant 1, ringsize >= 8, sorted inputs
|
||||||
| 6969 | 2018-04-24 | v8 | v0.2.0.0 | v0.2.0.0 | Bulletproofs, LWMA difficulty algorithm, ringsize >= 10, reduce unlock to 4
|
| 6969 | 2018-04-24 | v8 | v0.2.0.0 | v0.2.0.0 | Bulletproofs, LWMA difficulty algorithm, ringsize >= 10, reduce unlock to 4
|
||||||
| 56269 | 2018-10-06 | v9 | v0.3.0.0 | v0.3.0.0 | Cryptonight variant 2, LWMA v2, ringsize = 22, XXX
|
| 53666 | 2018-10-06 | v9 | v0.3.0.0 | v0.3.0.0 | Cryptonight variant 2, LWMA v2, ringsize = 22, XXX
|
||||||
|
|
||||||
X's indicate that these details have not been determined as of commit date.
|
X's indicate that these details have not been determined as of commit date.
|
||||||
|
|
||||||
|
|
|
@ -81,7 +81,7 @@
|
||||||
#define DIFFICULTY_CUT 60 // timestamps to cut after sorting
|
#define DIFFICULTY_CUT 60 // timestamps to cut after sorting
|
||||||
#define DIFFICULTY_BLOCKS_COUNT_V2 DIFFICULTY_WINDOW_V2 + 1 // added +1 to make N=N
|
#define DIFFICULTY_BLOCKS_COUNT_V2 DIFFICULTY_WINDOW_V2 + 1 // added +1 to make N=N
|
||||||
#define DIFFICULTY_BLOCKS_COUNT DIFFICULTY_WINDOW + DIFFICULTY_LAG
|
#define DIFFICULTY_BLOCKS_COUNT DIFFICULTY_WINDOW + DIFFICULTY_LAG
|
||||||
#define DIFFICULTY_HEIGHT 56269 // v9 fork height
|
#define DIFFICULTY_HEIGHT 53666 // v9 fork height
|
||||||
#define DIFFICULTY_GUESS 40000000 // difficulty at fork 40m
|
#define DIFFICULTY_GUESS 40000000 // difficulty at fork 40m
|
||||||
#define DIFFICULTY_MINIMUM 10000000 // minimum difficulty set to 10m
|
#define DIFFICULTY_MINIMUM 10000000 // minimum difficulty set to 10m
|
||||||
#define DIFFICULTY_TESTNET_HEIGHT 100
|
#define DIFFICULTY_TESTNET_HEIGHT 100
|
||||||
|
|
|
@ -92,7 +92,7 @@ static const struct {
|
||||||
//{ 1, 1, 0, 1341378000 },
|
//{ 1, 1, 0, 1341378000 },
|
||||||
{ 7, 1, 0, 1519605000 },
|
{ 7, 1, 0, 1519605000 },
|
||||||
{ 8, 6969, 0, 1524214739 },
|
{ 8, 6969, 0, 1524214739 },
|
||||||
{ 9, 56269, 0, 1538689773 },
|
{ 9, 53666, 0, 1538689773 },
|
||||||
};
|
};
|
||||||
|
|
||||||
static const uint64_t mainnet_hard_fork_version_1_till = ((uint64_t)(0));
|
static const uint64_t mainnet_hard_fork_version_1_till = ((uint64_t)(0));
|
||||||
|
|
Loading…
Reference in a new issue