Skip to content

Commit

Permalink
fix(fmt): run cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
petarvujovic98 committed Oct 7, 2024
1 parent 62c29a5 commit f2a2e2c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pipeline/src/executor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,10 @@ impl Executor {
let prover = CpuProver::new();
let key_pair = prover.setup(&elf);
println!("sp1 elf vk bn256 is: {}", key_pair.1.bytes32());
println!("sp1 elf vk hash_bytes is: {}", hex::encode(&key_pair.1.hash_bytes()));
println!(
"sp1 elf vk hash_bytes is: {}",
hex::encode(&key_pair.1.hash_bytes())
);
}

Ok(())
Expand Down

0 comments on commit f2a2e2c

Please sign in to comment.