Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/public_settings.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions src/qubic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down Expand Up @@ -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;
}
Expand Down
Loading