Skip to content

Commit

Permalink
dd transaction copy for background thread
Browse files Browse the repository at this point in the history
Signed-off-by: Karim Taam <[email protected]>
  • Loading branch information
matkt committed Jan 22, 2025
1 parent 750ab64 commit d485359
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
* checks for potential conflicts among transactions to ensure data integrity before applying the
* results to the world state.
*/
@SuppressWarnings({"unchecked", "rawtypes", "FieldCanBeLocal", "unused"})
@SuppressWarnings({"unchecked", "rawtypes"})
public class ParallelizedConcurrentTransactionProcessor {

private static final int NCPU = Runtime.getRuntime().availableProcessors();
Expand Down Expand Up @@ -158,7 +158,7 @@ public void runTransaction(
transactionProcessor.processTransaction(
roundWorldStateUpdater,
blockHeader,
transaction,
transaction.detachedCopy(),
miningBeneficiary,
new OperationTracer() {
@Override
Expand Down

0 comments on commit d485359

Please sign in to comment.