You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Compiling a program using MiMC and bls12_377 as the curve choice fails with
$ZOKRATES_STDLIB/hashes/mimc7/mimc7.zok:1:1
Expression `20888961410941983456478427210666206549300505294776164667214940546594746570981` of type `{integer}` cannot be assigned to constant `C` of type `field[91]`
because the integer can't be represented in the curve's scalar field.
Environment
Compiler version: 0.8.7
Operating system: Manjaro
Steps to Reproduce
from "hashes/mimc7/mimc7" import main as mimc;
def main(private field preImage) -> field {
return mimc::<10>(preImage, 0);
}
The text was updated successfully, but these errors were encountered:
Description
Compiling a program using MiMC and bls12_377 as the curve choice fails with
because the integer can't be represented in the curve's scalar field.
Environment
Steps to Reproduce
The text was updated successfully, but these errors were encountered: