fix typos

This commit is contained in:
HAOYUatHZ 2021-12-29 15:00:32 +08:00 committed by GitHub
parent 3cd7a141cc
commit 5a65c7b77b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ fn bench(name: &str, k: u32, c: &mut Criterion) {
.expect("Failed to write vk to file");
}
let vk_fs = File::open(&vk_path).expect("couldn't load sha256_params");
let vk_fs = File::open(&vk_path).expect("couldn't load sha256_vk");
let vk: VerifyingKey<EqAffine> =
VerifyingKey::<EqAffine>::read::<_, MyCircuit>(&mut BufReader::new(vk_fs), &params)
.expect("Failed to read vk");