diff --git a/elf/fault-proof-elf b/elf/fault-proof-elf index 9c25600d..523272bd 100755 Binary files a/elf/fault-proof-elf and b/elf/fault-proof-elf differ diff --git a/elf/range-elf b/elf/range-elf index e3fb0b7c..9d3e3f2d 100755 Binary files a/elf/range-elf and b/elf/range-elf differ diff --git a/programs/aggregation/src/main.rs b/programs/aggregation/src/main.rs index 761dfcba..0a625bb5 100644 --- a/programs/aggregation/src/main.rs +++ b/programs/aggregation/src/main.rs @@ -44,9 +44,7 @@ pub fn main() { let serialized_boot_info = bincode::serialize(&boot_info).unwrap(); let pv_digest = Sha256::digest(serialized_boot_info); - if cfg!(target_os = "zkvm") { - sp1_lib::verify::verify_sp1_proof(&agg_inputs.multi_block_vkey, &pv_digest.into()); - } + sp1_lib::verify::verify_sp1_proof(&agg_inputs.multi_block_vkey, &pv_digest.into()); }); // Create a map of each l1 head in the [`BootInfoStruct`]'s to booleans diff --git a/utils/client/src/precompiles/mod.rs b/utils/client/src/precompiles/mod.rs index 120bee25..fe45da10 100644 --- a/utils/client/src/precompiles/mod.rs +++ b/utils/client/src/precompiles/mod.rs @@ -18,9 +18,13 @@ macro_rules! create_annotated_precompile { let precompile = $precompile.precompile(); match precompile { Precompile::Standard(precompile) => { - println!(concat!("cycle-tracker-report-start: precompile-", $name)); + if cfg!(target_os = "zkvm") { + println!(concat!("cycle-tracker-report-start: precompile-", $name)); + } let result = precompile(input, gas_limit); - println!(concat!("cycle-tracker-report-end: precompile-", $name)); + if cfg!(target_os = "zkvm") { + println!(concat!("cycle-tracker-report-end: precompile-", $name)); + } result } _ => panic!("Annotated precompile must be a standard precompile."),