Minor fix on poseidon function bug
This commit is contained in:
parent
d6a33d7b4b
commit
0374f848c4
|
@ -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];
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue