remove debug prints

This commit is contained in:
Protryon 2020-12-07 15:03:21 -08:00
parent f9dc75f70c
commit 5c1a522f89

View File

@ -32,9 +32,6 @@ impl<F: Field + PrimeField, G: GroupType<F>> ConstrainedProgram<F, G> {
span: &Span,
) -> Result<&mut ConstrainedValue<F, G>, StatementError> {
// Check that assignee exists and is mutable
for key in self.identifiers.keys() {
println!("id {}", key);
}
Ok(match self.get_mut(name) {
Some(value) => match value {
ConstrainedValue::Mutable(mutable_value) => mutable_value,