Enable skipping blob pruning at each epoch

This commit is contained in:
Emilia Hane
2023-01-14 18:20:08 +01:00
parent 2f565d25b2
commit 6346c30158
4 changed files with 28 additions and 5 deletions

View File

@@ -415,6 +415,12 @@ pub fn get_config<E: EthSpec>(
client_config.store.prune_blobs = prune_blobs;
}
if let Some(epochs_per_blob_prune) =
clap_utils::parse_optional(cli_args, "epochs-per-blob-prune")?
{
client_config.store.epochs_per_blob_prune = epochs_per_blob_prune;
}
/*
* Zero-ports
*