Fix Sliding window: sliding window logic was not applied because a counter was not incremented

This commit is contained in:
Giambattista Bloisi 2023-06-28 12:05:40 +02:00
parent f04f9dd6c1
commit 85546dfa2f
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ public class BlockProcessor {
break;
}
if (i > wf.getSlidingWindowSize()) {
if (++i > wf.getSlidingWindowSize()) {
break;
}