From 9b0da28632c2d5ffc42bf647213a8990fa0cbffb Mon Sep 17 00:00:00 2001 From: Kamen Mladenov Date: Thu, 27 Feb 2025 11:35:32 +0200 Subject: chore: Rust fmt --- zkvms/jolt/host/src/main.rs | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'zkvms/jolt/host/src') diff --git a/zkvms/jolt/host/src/main.rs b/zkvms/jolt/host/src/main.rs index 54a6e61..3ad8377 100644 --- a/zkvms/jolt/host/src/main.rs +++ b/zkvms/jolt/host/src/main.rs @@ -1,4 +1,7 @@ -use zkvms_host_io::{benchmarkable, read_args, RunType::{ Execute, Prove, Verify }}; +use zkvms_host_io::{ + benchmarkable, read_args, + RunType::{Execute, Prove, Verify}, +}; type Input = (Vec>, u32, Vec>); @@ -14,11 +17,11 @@ pub fn main() { match run_info.run_type { Execute => unreachable!(), - Prove => benchmarkable!{ + Prove => benchmarkable! { let (output, _) = prove_guest(run_info.input.clone().into()); println!("Prove output: {}", output); }, - Verify => benchmarkable!{ + Verify => benchmarkable! { let (_, proof) = prove_guest(run_info.input.clone().into()); let is_valid = verify_guest(proof); println!("Verify is valid: {}", is_valid); -- cgit v1.2.3