Compare commits

...

6 Commits

Author SHA1 Message Date
jw
56dea1b584 Merge pull request #121 from wowario/checkpoints
update checkpoints
2018-11-08 19:40:02 -08:00
wowario
0ececcd9a1 version 0.3.1.5 2018-11-08 23:58:30 +03:00
wowario
6f9bb2b2ee update checkpoints 2018-11-08 23:55:44 +03:00
wowario
de5e3660d9 Merge pull request #119 from wowario/checkpoints
update checkpoints
2018-11-08 18:32:08 +03:00
wowario
7bc2142590 correct cumulative difficulty count 2018-11-08 18:21:52 +03:00
wowario
8adea0a034 update checkpoints 2018-11-08 17:52:47 +03:00
3 changed files with 7 additions and 3 deletions

View File

@@ -202,6 +202,10 @@ namespace cryptonote
ADD_CHECKPOINT(62425, "41a922dba6f3906871b2ccaf31ec9c91033470c503959093dae796deda8940ea");
ADD_CHECKPOINT(62479, "a2e8ff4205ba2980eb70921b0b21b5fc656ee273664ea94b860c68ca069b60dd");
ADD_CHECKPOINT(62503, "25fa115962988b4b8f8cfd22744a3e653b22ead8c8468e64caf334fc75a97d08");
ADD_CHECKPOINT(62550, "bde522a8a81c392c98c979434aa1dd9d20b4ca52230ba6ae0362872757808a48");
ADD_CHECKPOINT(62629, "8368e1ce1d421f1fc969364558433e2b2363d0ffcb5f2d946633095e3e6734f5");
ADD_CHECKPOINT(62720, "f871cddd75951e2fe24c282d2bd28396fc922ea519b354ace992a0162cb333ff");
ADD_CHECKPOINT(62733, "8331dbeeaf23173d2235a062373a437befadb6492cceb7640127bf18653a9e61");
return true;
}

View File

@@ -256,9 +256,9 @@ namespace cryptonote {
assert(timestamps.size() == cumulative_difficulties.size() && timestamps.size() <= static_cast<uint64_t>(N+1) );
if ( height <= DIFFICULTY_HEIGHT ){
/*if ( height <= DIFFICULTY_HEIGHT ){
return static_cast<uint64_t>(DIFFICULTY_GUESS);
}
}*/
for ( int64_t i = 1; i <= N; i++ ) {
ST = static_cast<int64_t>(timestamps[i]) - static_cast<int64_t>(timestamps[i-1]);

View File

@@ -1,5 +1,5 @@
#define DEF_MONERO_VERSION_TAG "@VERSIONTAG@"
#define DEF_MONERO_VERSION "0.3.1.3"
#define DEF_MONERO_VERSION "0.3.1.5"
#define DEF_MONERO_RELEASE_NAME "Cool Cage"
#define DEF_MONERO_VERSION_FULL DEF_MONERO_VERSION "-" DEF_MONERO_VERSION_TAG