We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80ce518 commit a1ca962Copy full SHA for a1ca962
src/cryptonote_basic/hardfork.cpp
@@ -349,7 +349,8 @@ HardFork::State HardFork::get_state(time_t t) const
349
return Ready;
350
351
time_t t_last_fork = heights.back().time;
352
- if (t >= t_last_fork + forked_time)
+ time_t t_forked_time = 31557600;
353
+ if (t >= t_last_fork + t_forked_time)
354
return LikelyForked;
355
if (t >= t_last_fork + update_time)
356
return UpdateNeeded;
src/version.cpp.in
@@ -1,6 +1,6 @@
1
#define DEF_BELDEX_VERSION_MAJOR 3
2
#define DEF_BELDEX_VERSION_MINOR 1
3
-#define DEF_BELDEX_VERSION_PATCH 4
+#define DEF_BELDEX_VERSION_PATCH 5
4
5
#define BELDEX_STRINGIFY2(val) #val
6
#define BELDEX_STRINGIFY(val) BELDEX_STRINGIFY2(val)
0 commit comments