Merge pull request #4258

7b45d94 Make max number of orphan blocks kept in memory a startup parameter (fixes #4253) (shshshsh)
This commit is contained in:
Wladimir J. van der Laan
2014-06-04 19:30:19 +02:00
3 changed files with 4 additions and 3 deletions

View File

@@ -1160,7 +1160,7 @@ uint256 static GetOrphanRoot(const uint256& hash)
// Remove a random orphan block (which does not have any dependent orphans).
void static PruneOrphanBlocks()
{
if (mapOrphanBlocksByPrev.size() <= MAX_ORPHAN_BLOCKS)
if (mapOrphanBlocksByPrev.size() <= (size_t)std::max((int64_t)0, GetArg("-maxorphanblocks", DEFAULT_MAX_ORPHAN_BLOCKS)))
return;
// Pick a random orphan block.