Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
moodlezoup committed Jan 23, 2024
1 parent 069ada4 commit 889e2ec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions jolt-core/src/jolt/vm/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ use std::path::PathBuf;
use strum::{EnumCount, IntoEnumIterator};
use textplots::{Chart, Plot, Shape};

use crate::r1cs::snark::prove_r1cs;
use crate::jolt::{
instruction::{sltu::SLTUInstruction, JoltInstruction, Opcode},
subtable::LassoSubtable,
};
use crate::poly::structured_poly::BatchablePolynomials;
use crate::r1cs::snark::{run_jolt_spartan_with_circuit, JoltCircuit};
use crate::r1cs::snark::prove_r1cs;
use crate::r1cs::snark::JoltCircuit;
use crate::utils::{errors::ProofVerifyError, random::RandomTape};
use crate::{
lasso::{
Expand Down Expand Up @@ -295,7 +295,7 @@ pub trait Jolt<F: PrimeField, G: CurveGroup<ScalarField = F>, const C: usize, co
circuit_flags,
];

let res = prove_r1cs(32, C, TRACE_LEN, inputs);
let res = prove_r1cs(32, C, TRACE_LEN, inputs);
assert!(res.is_ok());
}

Expand Down

0 comments on commit 889e2ec

Please sign in to comment.