Compare commits

...

2 Commits

Author SHA1 Message Date
sami7777 b0e9ca334f Use deterministic time check in CheckBlock to fix Tor chain splits (v5.7.9)
Build All Platforms / test-linux-unit (push) Failing after 40s
Build All Platforms / build-linux-qt (push) Failing after 40s
Build All Platforms / build-linux-daemon (push) Failing after 40s
Build All Platforms / build-windows-qt (push) Has been cancelled
Build All Platforms / build-windows-daemon (push) Has been cancelled
Build All Platforms / build-macos (push) Has been cancelled
Build All Platforms / release (push) Has been cancelled
Build All Platforms / Trigger TRI-PI ARM64 Build (push) Has been cancelled
Replace FutureDrift(GetAdjustedTime()) with GetTime() + 15min in CheckBlock
and header-sync validation. GetAdjustedTime() incorporates peer-reported
time offsets that vary between Tor nodes, causing the same block to be
accepted by some nodes and rejected by others — the primary cause of
persistent chain forks. AcceptBlock still enforces tight 3-min drift rules
deterministically against the previous block timestamp.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-10 23:54:16 -07:00
sami7777 029f5a4bfc Fix consensus bugs causing persistent chain splits (v5.7.8)
Build All Platforms / test-linux-unit (push) Failing after 40s
Build All Platforms / build-linux-qt (push) Failing after 40s
Build All Platforms / build-linux-daemon (push) Failing after 40s
Build All Platforms / build-windows-qt (push) Has been cancelled
Build All Platforms / build-windows-daemon (push) Has been cancelled
Build All Platforms / build-macos (push) Has been cancelled
Build All Platforms / release (push) Has been cancelled
Build All Platforms / Trigger TRI-PI ARM64 Build (push) Has been cancelled
Three fixes for the fork-oscillation problem where same-version nodes
keep disagreeing on the chain tip:

1. Prune setStakeSeen on reorg — disconnected PoS blocks' stake entries
   were never removed, blocking acceptance of valid competing blocks
   and preventing chain convergence after reorganizations.

2. Remove global nBestHeight from PastDrift/FutureDrift — the no-argument
   overloads used the mutable global nBestHeight to decide between 3-min
   and 10-min timestamp drift at the V5.4 fork boundary (block 2186941).
   Nodes at different heights applied different validation rules to the
   same block, causing a permanent consensus split. Now always uses
   post-fork 3-min rules since all nodes are well past the fork.

3. Anti-oscillation for equal-trust reorgs — the hash-based tiebreaker
   now only fires for shallow forks (parent in main chain). Deep forks
   with equal trust no longer trigger reorgs, preventing the Tor-latency-
   induced ping-pong where nodes flip between competing chains.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-10 17:17:07 -07:00
4 changed files with 35 additions and 10 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ if(POLICY CMP0167)
endif()
project(Triangles
VERSION 5.7.6.0
VERSION 5.7.9.0
DESCRIPTION "Cryptographic Triangles Wallet"
LANGUAGES C CXX
)
+1 -1
View File
@@ -8,7 +8,7 @@
// These need to be macros, as version.cpp's and triangles-qt.rc's voodoo requires it
#define CLIENT_VERSION_MAJOR 5
#define CLIENT_VERSION_MINOR 7
#define CLIENT_VERSION_REVISION 7
#define CLIENT_VERSION_REVISION 9
#define CLIENT_VERSION_BUILD 0
// Converts the parameter X to a string after macro replacement on X has been performed.
+27 -6
View File
@@ -247,7 +247,7 @@ static bool AddHeaderSyncNode(const CBlock& header, const uint256& hashHeader)
return false;
}
if (header.GetBlockTime() > FutureDrift(GetAdjustedTime()))
if (header.GetBlockTime() > GetTime() + 15 * 60)
{
printf("IBD-DIAG: header rejected (future time) hash=%s time=%u\n",
hashHeader.ToString().substr(0,20).c_str(), header.nTime);
@@ -2341,6 +2341,12 @@ bool static Reorganize(CTxDB& txdb, CBlockIndex* pindexNew)
vResurrect.push_back(tx);
}
// Remove disconnected PoS blocks from setStakeSeen so they don't
// block acceptance of valid blocks on the winning chain.
for (CBlockIndex* pindex : vDisconnect)
if (pindex->IsProofOfStake())
setStakeSeen.erase(make_pair(pindex->prevoutStake, pindex->nStakeTime));
// Connect longer branch
vector<CTransaction> vDelete;
for (unsigned int i = 0; i < vConnect.size(); i++)
@@ -2765,13 +2771,22 @@ bool CBlock::AddToBlockIndex(unsigned int nFile, unsigned int nBlockPos, const u
// New best — keep the batch open so SetBestChain can add ConnectBlock
// writes to the same transaction, cutting the per-block commit count in half.
// v5.4: deterministic tiebreaker — when two chains have equal trust,
// all nodes agree on the one whose tip has the lower block hash.
// This prevents permanent forks from PoS blocks with identical difficulty.
//
// Chain selection rules:
// 1. Strictly greater trust always wins (normal case).
// 2. Equal trust with shallow fork (parent in main chain): use
// deterministic hash tiebreaker — lower tip hash wins. This
// resolves single-block PoS races where two stakers find valid
// blocks at the same height with identical difficulty.
// 3. Equal trust with deep fork (parent NOT in main chain): do NOT
// reorg. Without this rule, Tor-latency-induced multi-block
// forks cause nodes to oscillate between competing chains of
// similar trust, preventing convergence.
bool fNewBest = false;
if (pindexNew->nChainTrust > nBestChainTrust)
fNewBest = true;
else if (pindexNew->nChainTrust == nBestChainTrust && pindexBest &&
pindexNew->pprev && pindexNew->pprev->IsInMainChain() &&
pindexNew->GetBlockHash() < pindexBest->GetBlockHash())
fNewBest = true;
@@ -2814,8 +2829,14 @@ bool CBlock::CheckBlock(bool fCheckPOW, bool fCheckMerkleRoot, bool fCheckSig) c
if (fCheckPOW && IsProofOfWork() && !CheckProofOfWork(GetHash(), nBits))
return DoS(50, error("CheckBlock() : proof of work failed"));
// Check timestamp
if (GetBlockTime() > FutureDrift(GetAdjustedTime()))
// Check timestamp: reject blocks obviously too far in the future.
// Use a generous 15-minute window from the raw system clock.
// GetAdjustedTime() is NOT used here because it incorporates peer-reported
// time offsets that differ between Tor nodes, causing nondeterministic
// block rejection — the primary cause of persistent chain splits.
// The deterministic timestamp checks in AcceptBlock (median-time-past,
// prev-block-time with 3-min drift) still enforce tight rules.
if (GetBlockTime() > GetTime() + 15 * 60)
return error("CheckBlock() : block timestamp too far in the future");
// First transaction must be coinbase, the rest must not be
+6 -2
View File
@@ -62,8 +62,12 @@ static const uint256 hashGenesisBlockTestNet ("0x7e7a6e4dd5fe895106fca912dfbacae
inline int64_t GetMaxTimeDrift(int nHeight) { return (nHeight >= FORK_HEIGHT_V5_4) ? 3 * 60 : 10 * 60; }
inline int64_t PastDrift(int64_t nTime, int nHeight) { return nTime - GetMaxTimeDrift(nHeight); }
inline int64_t FutureDrift(int64_t nTime, int nHeight) { return nTime + GetMaxTimeDrift(nHeight); }
inline int64_t PastDrift(int64_t nTime) { return PastDrift(nTime, nBestHeight); }
inline int64_t FutureDrift(int64_t nTime) { return FutureDrift(nTime, nBestHeight); }
// Height-less overloads always use post-V5.4 rules (3-min drift).
// All nodes are well past FORK_HEIGHT_V5_4; using the global nBestHeight
// here previously caused nodes at different heights to disagree on block
// validity during the fork transition — a consensus-splitting bug.
inline int64_t PastDrift(int64_t nTime) { return PastDrift(nTime, FORK_HEIGHT_V5_4); }
inline int64_t FutureDrift(int64_t nTime) { return FutureDrift(nTime, FORK_HEIGHT_V5_4); }
extern CScript COINBASE_FLAGS;