Skip to content
Merged
Changes from all commits
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: 7 additions & 0 deletions execution/stagedsync/exec3_parallel.go
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,13 @@ func (pe *parallelExecutor) exec(ctx context.Context, execStage *StageState, u U
}
resetCommitmentGauges(ctx)

// on chain tip we run receipt root verification in parallel alongside commitment computation
// make sure to wait for it to finish and check for an error
err = pe.getPostValidator().Wait()
if err != nil {
return err
}

if shouldGenerateChangesets {
pe.domains().SavePastChangesetAccumulator(applyResult.BlockHash, applyResult.BlockNum, changeSet)
}
Expand Down
Loading