Minor fix on poseidon function bug

This commit is contained in:
thomaslavaur 2024-07-18 09:23:02 +02:00
parent d6a33d7b4b
commit 0374f848c4
1 changed files with 1 additions and 1 deletions

View File

@ -361,7 +361,7 @@ template partial_round_16_to_1(round_number) {
for(var i=1; i<16; i++){
matrix.in[i] <== in[i];
}
for(var i=1; i<16; i++){
for(var i=0; i<16; i++){
out[i] <== matrix.out[i];
}
}