mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-01-29 17:18:08 -05:00
fix: dont unwind genesis block in stage run (#7418)
This commit is contained in:
@@ -157,7 +157,7 @@ impl Command {
|
||||
.await?;
|
||||
}
|
||||
|
||||
let batch_size = self.batch_size.unwrap_or(self.to - self.from + 1);
|
||||
let batch_size = self.batch_size.unwrap_or(self.to.saturating_sub(self.from) + 1);
|
||||
|
||||
let etl_config = EtlConfig::new(
|
||||
Some(
|
||||
|
||||
Reference in New Issue
Block a user