pedersen_hash: show a tighter limit for hash sizes

This commit is contained in:
Kobi Gurkan 2018-08-19 10:04:33 +03:00 committed by Jack Grigg
parent 15633ad434
commit 4835be05b0
No known key found for this signature in database
GPG Key ID: 9E8255172BBF9898
1 changed files with 1 additions and 1 deletions

View File

@ -215,7 +215,7 @@ mod test {
let params = &JubjubBls12::new();
let mut input: Vec<bool> = vec![];
for i in 0..(63*3*4+1) {
for i in 0..(63*3*4-6+1) {
input.push(true);
}