mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 03:52:49 +01:00
[doc] Fix comment in FindForkInGlobalIndex
The comment erroneously implies that we're searching `chainActive` for the first block common to `locator`, but we're using the parameter `chain`.
This commit is contained in:
parent
3cf76c23fb
commit
0ef7b403d0
@ -263,7 +263,8 @@ CBlockIndex* FindForkInGlobalIndex(const CChain& chain, const CBlockLocator& loc
|
||||
{
|
||||
AssertLockHeld(cs_main);
|
||||
|
||||
// Find the first block the caller has in the main chain
|
||||
// Find the latest block common to locator and chain - we expect that
|
||||
// locator.vHave is sorted descending by height.
|
||||
for (const uint256& hash : locator.vHave) {
|
||||
CBlockIndex* pindex = LookupBlockIndex(hash);
|
||||
if (pindex) {
|
||||
|
Loading…
Reference in New Issue
Block a user