From a43b3674c78e5f95322a5fefc480bd0212b545bc Mon Sep 17 00:00:00 2001 From: DimAn Date: Wed, 17 Mar 2021 01:00:28 +0300 Subject: [PATCH] add missed suggestion --- validator/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/validator/src/main.rs b/validator/src/main.rs index 7ccaf7b803..6122d21bca 100644 --- a/validator/src/main.rs +++ b/validator/src/main.rs @@ -2066,8 +2066,8 @@ pub fn main() { let snapshot_interval_slots = value_t_or_exit!(matches, "snapshot_interval_slots", u64); let maximum_local_snapshot_age = value_t_or_exit!(matches, "maximum_local_snapshot_age", u64); - let snapshot_output_dir = if matches.is_present("snapshots_path") { - PathBuf::from(matches.value_of("snapshots_path").unwrap()) + let snapshot_output_dir = if matches.is_present("snapshot_dir") { + PathBuf::from(matches.value_of("snapshot_dir").unwrap()) } else { ledger_path.clone() };