Browse Source

Merge pull request #6029

a784f90 Cap nAttempts penalty at 8 and switch to pow instead of a division loop. (Gregory Maxwell)
0.13
Wladimir J. van der Laan 10 years ago
parent
commit
71900b4426
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
  1. 5
      src/addrman.cpp

5
src/addrman.cpp

@ -67,9 +67,8 @@ double CAddrInfo::GetChance(int64_t nNow) const @@ -67,9 +67,8 @@ double CAddrInfo::GetChance(int64_t nNow) const
if (nSinceLastTry < 60 * 10)
fChance *= 0.01;
// deprioritize 50% after each failed attempt
for (int n = 0; n < nAttempts; n++)
fChance /= 1.5;
// deprioritize 66% after each failed attempt, but at most 1/28th to avoid the search taking forever or overly penalizing outages.
fChance *= pow(0.66, min(nAttempts, 8));
return fChance;
}

Loading…
Cancel
Save