From 963013f52339a6a601c165dcdb95a1932c97c8de Mon Sep 17 00:00:00 2001 From: howardwu Date: Wed, 24 Feb 2021 19:51:29 -0800 Subject: [PATCH] Remove duplicate comment --- leo/commands/setup.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/leo/commands/setup.rs b/leo/commands/setup.rs index 557c368766..fad11bbe20 100644 --- a/leo/commands/setup.rs +++ b/leo/commands/setup.rs @@ -64,7 +64,6 @@ impl Command for Setup { let keys_exist = ProvingKeyFile::new(&package_name).exists_at(&path) && VerificationKeyFile::new(&package_name).exists_at(&path); - // If keys do not exist or the checksum differs, run the program setup // If keys do not exist or the checksum differs, run the program setup let (proving_key, prepared_verifying_key) = if !keys_exist || checksum_differs { tracing::info!("Starting...");