Skip to content

Commit

Permalink
init sf producer with prune modes on unwind cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
joshieDo committed Jan 13, 2025
1 parent 138004b commit 46a079f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/cli/commands/src/stage/unwind.rs
Original file line number Diff line number Diff line change
Expand Up @@ -149,15 +149,15 @@ impl<C: ChainSpecParser<ChainSpec: EthChainSpec + EthereumHardforks>> Command<C>
max_duration: None,
},
stage_conf.execution_external_clean_threshold(),
prune_modes,
prune_modes.clone(),
ExExManagerHandle::empty(),
)),
)
};

let pipeline = builder.build(
provider_factory.clone(),
StaticFileProducer::new(provider_factory, PruneModes::default()),
StaticFileProducer::new(provider_factory, prune_modes),
);
Ok(pipeline)
}
Expand Down

0 comments on commit 46a079f

Please sign in to comment.