Skip to content

Commit

Permalink
fixing package names
Browse files Browse the repository at this point in the history
  • Loading branch information
anupsv committed Jan 30, 2025
1 parent b3e532e commit 44586ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion verifier/benches/bench_kzg_verify.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
use criterion::{criterion_group, criterion_main, Criterion};
use rand::Rng;
use rust_kzg_bn254_batch_verifier::verify::verify_proof;
use rust_kzg_bn254_primitives::blob::Blob;
use rust_kzg_bn254_prover::{kzg::KZG, srs::SRS};
use rust_kzg_bn254_verifier::verify::verify_proof;
use std::time::Duration;

fn bench_kzg_verify(c: &mut Criterion) {
Expand Down
2 changes: 1 addition & 1 deletion verifier/tests/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ mod tests {
use rand::Rng;
const GETTYSBURG_ADDRESS_BYTES: &[u8] = "Fourscore and seven years ago our fathers brought forth, on this continent, a new nation, conceived in liberty, and dedicated to the proposition that all men are created equal. Now we are engaged in a great civil war, testing whether that nation, or any nation so conceived, and so dedicated, can long endure. We are met on a great battle-field of that war. We have come to dedicate a portion of that field, as a final resting-place for those who here gave their lives, that that nation might live. It is altogether fitting and proper that we should do this. But, in a larger sense, we cannot dedicate, we cannot consecrate—we cannot hallow—this ground. The brave men, living and dead, who struggled here, have consecrated it far above our poor power to add or detract. The world will little note, nor long remember what we say here, but it can never forget what they did here. It is for us the living, rather, to be dedicated here to the unfinished work which they who fought here have thus far so nobly advanced. It is rather for us to be here dedicated to the great task remaining before us—that from these honored dead we take increased devotion to that cause for which they here gave the last full measure of devotion—that we here highly resolve that these dead shall not have died in vain—that this nation, under God, shall have a new birth of freedom, and that government of the people, by the people, for the people, shall not perish from the earth.".as_bytes();
use ark_std::{str::FromStr, One};
use rust_kzg_bn254_batch_verifier::{batch::verify_blob_kzg_proof_batch, verify::verify_proof};
use rust_kzg_bn254_primitives::blob::Blob;
use rust_kzg_bn254_prover::{kzg::KZG, srs::SRS};
use rust_kzg_bn254_verifier::{batch::verify_blob_kzg_proof_batch, verify::verify_proof};

// Define a static variable for setup
lazy_static! {
Expand Down

0 comments on commit 44586ba

Please sign in to comment.