You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| 95000 | 01-10-2018 | v8 | Adding public transactions (transactions with mixin 0) |
48
+
| 95085 | 08-10-2018 | v8 | changing difficulty algorithm to [LWMA-2 developed by Zawy12](https://github.com/zawy12/difficulty-algorithms/issues/3)|
49
+
| 145000 | 01-11-2018 | v9 | Adding public transactions, bullet proofs, increased and static ringsize and more! |
49
50
50
51
Note future releases block heights and dates may change, so make sure to frequently check github, our website, the forums, etc. for the most up to date information.
Copy file name to clipboardExpand all lines: src/cryptonote_core/blockchain.cpp
+70-13Lines changed: 70 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -95,8 +95,10 @@ static const struct {
95
95
// version 7 starts from block 1, which is on or around July 18, 2018. This version includes the new POW cryptonight_v7 algorithm.
96
96
{ 7, 1, 0, 1531962000 },
97
97
98
-
// version 8 starts from block 157000, which is on or around Nov 14, 2018. This version includes bullet proofs, a substantial increase in the ringsize, a fixed ring size, and a few other items.
99
-
{ 8, 157000, 0, 1541809000 },
98
+
// version 8 starts from block 95085, which is on or around Oct 8, 2018. This version includes a new difficulty algorithm.
99
+
{ 8, 95085, 0, 1538524800 },
100
+
101
+
// version 9 starts from block 157000, which is on or around Nov 14, 2018. This version includes bullet proofs, public transactions, a substantial increase in the ringsize, a fixed ring size, and a few other items.
// version 7 starts from block 1, which is on or around July 18, 2018. This version includes the new POW cryptonight_v7 algorithm.
113
115
{ 7, 1, 0, 1531962000 },
114
116
115
-
// version 8 starts from block 146000, which is on or around Nov 7, 2018. This version includes bullet proofs, a substantial increase in the ringsize, a fixed ring size, and a few other items.
116
-
{ 8, 146000, 0, 1541203200 },
117
+
// version 8 starts from block 105000, which is on or around Oct 8, 2018. This version includes a new difficulty algorithm.
118
+
{ 8, 105000, 0, 1538524800 },
119
+
120
+
// version 9 starts from block 146000, which is on or around Nov 14, 2018. This version includes bullet proofs, public transactions, a substantial increase in the ringsize, a fixed ring size, and a few other items.
0 commit comments