mirror of
https://github.com/AleoHQ/leo.git
synced 2024-11-25 05:36:50 +03:00
Update compiler/src/value/field/input.rs
Co-authored-by: Collin Chin <collin.chin@berkeley.edu>
This commit is contained in:
parent
ad6f3fcf84
commit
c5641a5507
@ -49,7 +49,7 @@ pub(crate) fn allocate_field<F: Field + PrimeField, CS: ConstraintSystem<F>>(
|
||||
.map_err(|_| FieldError::missing_field(format!("{}: field", name), span.to_owned())),
|
||||
}
|
||||
}
|
||||
None => return Err(FieldError::missing_field(format!("{}: field", name), span.to_owned())),
|
||||
None => Err(FieldError::missing_field(format!("{}: field", name), span.to_owned())),
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user