Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions execution/stagedsync/exec3_parallel.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import (
"context"
"errors"
"fmt"
"maps"
"os"
"runtime"
"runtime/pprof"
Expand Down Expand Up @@ -2967,8 +2966,8 @@ func (be *blockExecutor) nextResult(ctx context.Context, pe *parallelExecutor, r
applyResult := txResult{
blockNum: be.blockNum,
blockHash: be.blockHash,
traceFroms: map[accounts.Address]struct{}{},
traceTos: map[accounts.Address]struct{}{},
traceFroms: result.TraceFroms,
traceTos: result.TraceTos,
txNum: task.Version().TxNum,
rules: task.Rules(),
cumulativeBlobGasUsed: result.cumulativeBlobGasUsed,
Expand All @@ -2995,8 +2994,6 @@ func (be *blockExecutor) nextResult(ctx context.Context, pe *parallelExecutor, r
pe.executedGas.Add(int64(applyResult.blockGasUsed))
}

maps.Copy(applyResult.traceFroms, result.TraceFroms)
maps.Copy(applyResult.traceTos, result.TraceTos)
be.cntFinalized++
be.publishTasks.markComplete(tx)

Expand Down
Loading