Fix false positive error

This commit is contained in:
miketout
2018-10-12 14:56:01 -07:00
parent 085c3640bb
commit 79b0432dc1
3 changed files with 6 additions and 3 deletions

View File

@@ -5015,7 +5015,7 @@ bool ProcessNewBlock(bool from_miner,int32_t height,CValidationState &state, CNo
// when we succeed here, we prune all cheat candidates in the cheat list to 250 blocks ago, as they should be used or not
// useful by then
if ((height - 250) > 1)
cheatList.Prune(height - 250);
cheatList.Prune(height - 200);
return true;
}