diff --git a/src/public_settings.h b/src/public_settings.h index fa4760c6..d4920889 100644 --- a/src/public_settings.h +++ b/src/public_settings.h @@ -74,7 +74,7 @@ static_assert(AUTO_FORCE_NEXT_TICK_THRESHOLD* TARGET_TICK_DURATION >= PEER_REFRE #define VERSION_A 1 #define VERSION_B 302 -#define VERSION_C 0 +#define VERSION_C 1 // Epoch and initial tick for node startup #define EPOCH 228 diff --git a/src/qubic.cpp b/src/qubic.cpp index e6570f0a..27929295 100644 --- a/src/qubic.cpp +++ b/src/qubic.cpp @@ -1188,9 +1188,9 @@ static void processBroadcastTick(Peer* peer, RequestResponseHeader* header) } else { - // hot fix: only accept "empty" votes for stuck tick 73924308 + // hot fix: only accept "empty" votes for stuck tick 77259626 bool isOk = true; - if (request->tick.tick == 73924308) + if (request->tick.tick == 77259626) { // only accept zero transactionDigest if (!isZero(request->tick.transactionDigest)) @@ -6556,10 +6556,10 @@ static void tickProcessor(void*) tickDataSuits = true; } - // hot fix: force tick 73924308 to be empty - if (system.tick == 73924307) + // hot fix: force tick 77259626 to be empty + if (system.tick == 77259625) { - // ignore next tick (73924308) + // ignore next tick (77259626) targetNextTickDataDigest = m256i::zero(); targetNextTickDataDigestIsKnown = true; }