From ff95f6dcfa8ca6e1e7a2719ab6c46fc6baa1ed33 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Thu, 15 Aug 2019 21:41:14 -0700 Subject: [PATCH] Remove bad ! --- validator/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/validator/src/main.rs b/validator/src/main.rs index 2bafa5dcaf..75b4eae1f6 100644 --- a/validator/src/main.rs +++ b/validator/src/main.rs @@ -397,7 +397,7 @@ fn main() { entrypoint_addr, &gossip_addr, &ledger_path, - !matches.is_present("no_snapshot_fetch"), + matches.is_present("no_snapshot_fetch"), ) .unwrap_or_else(|err| { eprintln!("Failed to download ledger: {}", err);