Skip to content

Commit

Permalink
Formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
sjudson committed Jun 21, 2024
1 parent 709edf8 commit 2eaf91b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion api/src/prover/jolt/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
pub use nexus_jolt::{preprocess, prove, verify, parse, trace, VM};
pub use nexus_jolt::{parse, preprocess, prove, trace, verify, VM};

pub mod types;
2 changes: 1 addition & 1 deletion api/src/prover/jolt/types.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
//! Default types and traits for use by zkVM + Jolt pipeline
pub use nexus_jolt::{F, PCS, JoltPreprocessing, JoltProof, JoltCommitments};
pub use nexus_jolt::{JoltCommitments, JoltPreprocessing, JoltProof, F, PCS};
2 changes: 1 addition & 1 deletion api/src/prover/mod.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pub mod nova;
pub mod jolt;
pub mod nova;
6 changes: 5 additions & 1 deletion tools/src/command/jolt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@
use std::{fs::File, io::BufReader, path::Path};

use nexus_api::nvm::memory::MerkleTrie;
use nexus_api::prover::jolt::{parse, trace, types::{JoltCommitments, JoltProof}, VM};
use nexus_api::prover::jolt::{
parse, trace,
types::{JoltCommitments, JoltProof},
VM,
};

use anyhow::Context;
use ark_serialize::{CanonicalDeserialize, CanonicalSerialize};
Expand Down

0 comments on commit 2eaf91b

Please sign in to comment.