Skip to content

Commit

Permalink
Update Helper.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
Qiao-Jin committed Oct 23, 2019
1 parent e0f9145 commit a84eff9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neo/Helper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ internal static int GetLowestSetBit(this BigInteger i)

internal static void Remove<T>(this HashSet<T> set, IEnumerable<T> remove)
{
if (set.Count > 1000)
if (set.Count > 600000)
{
set.ExceptWith(remove);
}
Expand Down

0 comments on commit a84eff9

Please sign in to comment.