From 7ef3a35bf91bbf2a29841d9bc0788fd50661ce7d Mon Sep 17 00:00:00 2001 From: ratankaliani Date: Tue, 3 Sep 2024 20:59:07 +0000 Subject: [PATCH] fix --- scripts/prove/bin/multi.rs | 2 +- scripts/prove/bin/single.rs | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/scripts/prove/bin/multi.rs b/scripts/prove/bin/multi.rs index 4bc3204f..a7a8c143 100644 --- a/scripts/prove/bin/multi.rs +++ b/scripts/prove/bin/multi.rs @@ -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"); diff --git a/scripts/prove/bin/single.rs b/scripts/prove/bin/single.rs index 10dc9edf..5f4fbdc2 100644 --- a/scripts/prove/bin/single.rs +++ b/scripts/prove/bin/single.rs @@ -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");