remove printlns

This commit is contained in:
collin 2020-08-15 13:57:03 -07:00
parent 2d6da3cd3c
commit 70de48d928
2 changed files with 0 additions and 3 deletions

View File

@ -23,8 +23,6 @@ impl<F: Field + PrimeField, G: GroupType<F>> ConstrainedProgram<F, G> {
// Evaluate the identifier name in the current function scope
let variable_name = new_scope(function_scope.clone(), unresolved_identifier.to_string());
let identifier_name = new_scope(file_scope, unresolved_identifier.to_string());
println!("expected variable {}", variable_name);
println!("expected identifier name {}", identifier_name);
let mut result_value = if let Some(value) = self.get(&variable_name) {
// Reassigning variable to another variable

View File

@ -26,7 +26,6 @@ impl<F: Field + PrimeField, G: GroupType<F>> ConstrainedProgram<F, G> {
}
pub(crate) fn store(&mut self, name: String, value: ConstrainedValue<F, G>) {
println!("name {}", name);
self.identifiers.insert(name, value);
}