Fix clippy

This commit is contained in:
howardwu 2021-02-04 20:34:24 -08:00
parent 749e70b5b0
commit 2a4052975f

View File

@ -237,19 +237,19 @@ impl<F: Field + PrimeField, G: GroupType<F>> Compiler<F, G> {
Ok(hex::encode(hash)) Ok(hex::encode(hash))
} }
// /// TODO (howardwu): Incorporate this for real program executions and intentionally-real /// TODO (howardwu): Incorporate this for real program executions and intentionally-real
// /// test executions. Exclude it for test executions on dummy data. /// test executions. Exclude it for test executions on dummy data.
// /// ///
// /// Verifies the input to the program. /// Verifies the input to the program.
// /// ///
// fn verify_local_data_commitment( pub fn verify_local_data_commitment(
// &self, &self,
// system_parameters: &SystemParameters<Components>, system_parameters: &SystemParameters<Components>,
// ) -> Result<bool, CompilerError> { ) -> Result<bool, CompilerError> {
// let result = verify_local_data_commitment(system_parameters, &self.program_input)?; let result = verify_local_data_commitment(system_parameters, &self.program_input)?;
//
// Ok(result) Ok(result)
// } }
/// ///
/// Manually sets main function input. /// Manually sets main function input.