Skip to content

Commit 8aa9529

Browse files
committed
fix: clippy
1 parent 28eacbc commit 8aa9529

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

script/bin/test.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ use sp1_blobstream_script::util::fetch_input_for_blobstream_proof;
33
use sp1_blobstream_script::{TendermintRPCClient, TENDERMINT_ELF};
44
use sp1_sdk::{ProverClient, SP1Stdin};
55
use tokio::runtime;
6-
use tracing::debug;
76

87
#[derive(Parser, Debug)]
98
#[clap(author, version, about, long_about = None)]
@@ -31,7 +30,7 @@ pub async fn get_data_commitment(start_block: u64, end_block: u64) {
3130

3231
let res = reqwest::get(url.clone()).await;
3332

34-
debug!("Data Commitment Response: {:?}", res.unwrap())
33+
tracing::debug!("Data Commitment Response: {:?}", res.unwrap())
3534
}
3635

3736
/// Generate a proof between the given trusted and target blocks.

0 commit comments

Comments
 (0)