refactor/perf: use rayon spawn for recovery jobs (#1226)

This commit is contained in:
Matthias Seitz
2023-02-09 23:21:33 +01:00
committed by GitHub
parent d82553cd66
commit eb2f5e4ea0
10 changed files with 202 additions and 49 deletions

View File

@ -64,7 +64,6 @@ let mut pipeline = reth_stages::Pipeline::new()
commit_threshold: config.stages.bodies.commit_threshold,
})
.push(SenderRecoveryStage {
batch_size: config.stages.sender_recovery.batch_size,
commit_threshold: config.stages.sender_recovery.commit_threshold,
})
.push(ExecutionStage { config: ExecutorConfig::new_ethereum() });