Skip to content

Commit

Permalink
Multithreading corner case crash fixed (#1158)
Browse files Browse the repository at this point in the history
  • Loading branch information
levonpetrosyan93 authored Apr 2, 2022
1 parent 904984e commit 45f4bd6
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/batchproof_container.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -210,9 +210,9 @@ void BatchProofContainer::batch_sigma() {
}
return true;
}));
}

++itr;
++itr;
}
}

bool isFail = false;
Expand Down Expand Up @@ -311,8 +311,9 @@ void BatchProofContainer::batch_lelantus() {
}
return true;
}));

++itr;
}
++itr;
}
bool isFail = false;
for (auto& th : parallelTasks) {
Expand Down

0 comments on commit 45f4bd6

Please sign in to comment.