Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
mattstam committed Dec 9, 2024
1 parent f0a6a6d commit 944fbba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
5 changes: 2 additions & 3 deletions examples/fibonacci/script/bin/network.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
use sp1_sdk::{
include_elf,
network_v2::{FulfillmentStrategy, NetworkProver, DEFAULT_PROVER_NETWORK_RPC},
utils, SP1Stdin,
network_v2::{Error, FulfillmentStrategy, NetworkProver, DEFAULT_PROVER_NETWORK_RPC},
utils, Prover, SP1Stdin,
};
use std::env;
use tokio;

/// The ELF we want to execute inside the zkVM.
const ELF: &[u8] = include_elf!("fibonacci-program");
Expand Down
4 changes: 1 addition & 3 deletions examples/fibonacci/script/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
use sp1_sdk::{
include_elf, network_v2::Error, utils, ProverClient, SP1ProofWithPublicValues, SP1Stdin,
};
use sp1_sdk::{include_elf, utils, ProverClient, SP1ProofWithPublicValues, SP1Stdin};

/// The ELF we want to execute inside the zkVM.
const ELF: &[u8] = include_elf!("fibonacci-program");
Expand Down

0 comments on commit 944fbba

Please sign in to comment.