Skip to content

Commit

Permalink
remove break statement from FilterFree
Browse files Browse the repository at this point in the history
  • Loading branch information
hal0x2328 authored and erikzhang committed Aug 24, 2018
1 parent b7bcde5 commit a25d686
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions SimplePolicy/SimplePolicyPlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,6 @@ private IEnumerable<Transaction> FilterFree(IEnumerable<Transaction> transaction
yield return tx;
else if (count++ < Settings.Default.MaxFreeTransactionsPerBlock)
yield return tx;
else
yield break;
}

void ILogPlugin.Log(string source, LogLevel level, string message)
Expand Down

0 comments on commit a25d686

Please sign in to comment.