mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00: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