We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 768e24f commit 16061e5Copy full SHA for 16061e5
beacon_node/src/config.rs
@@ -443,6 +443,12 @@ pub fn get_config<E: EthSpec>(
443
client_config.store.epochs_per_blob_prune = epochs_per_blob_prune;
444
}
445
446
+ if let Some(blob_prune_margin_epochs) =
447
+ clap_utils::parse_optional(cli_args, "blob-prune-margin-epochs")?
448
+ {
449
+ client_config.store.blob_prune_margin_epochs = blob_prune_margin_epochs;
450
+ }
451
+
452
if let Some(malicious_withhold_count) =
453
clap_utils::parse_optional(cli_args, "malicious-withhold-count")?
454
{
0 commit comments