Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ratankaliani committed Sep 3, 2024
1 parent decd5c5 commit 7ef3a35
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/prove/bin/multi.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ use op_succinct_host_utils::{
fetcher::{ChainMode, OPSuccinctDataFetcher},
get_proof_stdin,
stats::get_execution_stats,
witnessgen::WitnessGenExecutor,
ProgramType,
};
use op_succinct_proposer::WitnessGenExecutor;
use sp1_sdk::{utils, ProverClient};

pub const MULTI_BLOCK_ELF: &[u8] = include_bytes!("../../../elf/range-elf");
Expand Down
5 changes: 3 additions & 2 deletions scripts/prove/bin/single.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ use std::{env, fs};
use anyhow::Result;
use clap::Parser;
use num_format::{Locale, ToFormattedString};
use op_succinct_host_utils::{fetcher::OPSuccinctDataFetcher, get_proof_stdin, ProgramType};
use op_succinct_proposer::WitnessGenExecutor;
use op_succinct_host_utils::{
fetcher::OPSuccinctDataFetcher, get_proof_stdin, witnessgen::WitnessGenExecutor, ProgramType,
};
use sp1_sdk::{utils, ProverClient};

pub const SINGLE_BLOCK_ELF: &[u8] = include_bytes!("../../../elf/fault-proof-elf");
Expand Down

0 comments on commit 7ef3a35

Please sign in to comment.