From ac164a605a2f722e269e8609cea7e34212996045 Mon Sep 17 00:00:00 2001 From: Georgios Konstantopoulos Date: Sat, 4 Feb 2023 12:48:18 -0800 Subject: [PATCH] fix: use correct config for sender recovery stage (#1170) --- bin/reth/src/node/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/reth/src/node/mod.rs b/bin/reth/src/node/mod.rs index b333d7e02a..ce6a872075 100644 --- a/bin/reth/src/node/mod.rs +++ b/bin/reth/src/node/mod.rs @@ -212,7 +212,7 @@ impl Command { OfflineStages::default() .set(SenderRecoveryStage { batch_size: stage_conf.sender_recovery.batch_size, - commit_threshold: stage_conf.execution.commit_threshold, + commit_threshold: stage_conf.sender_recovery.commit_threshold, }) .set(ExecutionStage { chain_spec: self.chain.clone(),