mirror of
https://github.com/AleoHQ/leo.git
synced 2024-11-09 13:06:26 +03:00
remove printlns
This commit is contained in:
parent
2d6da3cd3c
commit
70de48d928
@ -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
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user