Skip to content

Commit

Permalink
run reth in "full" pruning mode
Browse files Browse the repository at this point in the history
  • Loading branch information
ralexstokes committed Oct 24, 2023
1 parent 08973a2 commit 22d74c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mev-build-rs/src/reth_builder/service_ext.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ impl ServiceExt {
let network_name = format!("{0}", network);

let mut params =
vec!["".into(), "--chain".into(), network_name.to_string(), "--http".into()];
vec!["".into(), "--chain".into(), network_name.to_string(), "--full".into(), "--http".into()];
if let Some(path) = self.config.jwt_secret_path.as_ref() {
params.push("--authrpc.jwtsecret".into());
params.push(path.clone());
Expand Down

0 comments on commit 22d74c7

Please sign in to comment.