Updates CBlockIndexWorkComparator outdated comment

This commit is contained in:
Sergi Delgado Segura
2024-03-12 16:04:20 -04:00
parent 2a97ff466d
commit ab145cb3b4

View File

@@ -161,7 +161,7 @@ bool CBlockIndexWorkComparator::operator()(const CBlockIndex* pa, const CBlockIn
if (pa->nChainWork > pb->nChainWork) return false;
if (pa->nChainWork < pb->nChainWork) return true;
// ... then by earliest time received, ...
// ... then by earliest activatable time, ...
if (pa->nSequenceId < pb->nSequenceId) return false;
if (pa->nSequenceId > pb->nSequenceId) return true;