Skip to content

Commit 16061e5

Browse files
committed
Undo accidentally removed code.
1 parent 768e24f commit 16061e5

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

beacon_node/src/config.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -443,6 +443,12 @@ pub fn get_config<E: EthSpec>(
443443
client_config.store.epochs_per_blob_prune = epochs_per_blob_prune;
444444
}
445445

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+
446452
if let Some(malicious_withhold_count) =
447453
clap_utils::parse_optional(cli_args, "malicious-withhold-count")?
448454
{

0 commit comments

Comments
 (0)