Skip to content

Commit

Permalink
uncomment main
Browse files Browse the repository at this point in the history
  • Loading branch information
neotheprogramist committed Jan 12, 2024
1 parent 72a3538 commit 62b471e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/lib.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ use cairo_verifier::{
};

fn main(x: Array<felt252>) {
// let mut x_span = x.span();
// let stark_proof: StarkProof = Serde::<StarkProofWithSerde>::deserialize(ref x_span)
// .unwrap()
// .into();
// stark_proof.verify();
let mut x_span = x.span();
let stark_proof: StarkProof = Serde::<StarkProofWithSerde>::deserialize(ref x_span)
.unwrap()
.into();
stark_proof.verify();
}

0 comments on commit 62b471e

Please sign in to comment.