We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28eacbc commit 8aa9529Copy full SHA for 8aa9529
script/bin/test.rs
@@ -3,7 +3,6 @@ use sp1_blobstream_script::util::fetch_input_for_blobstream_proof;
3
use sp1_blobstream_script::{TendermintRPCClient, TENDERMINT_ELF};
4
use sp1_sdk::{ProverClient, SP1Stdin};
5
use tokio::runtime;
6
-use tracing::debug;
7
8
#[derive(Parser, Debug)]
9
#[clap(author, version, about, long_about = None)]
@@ -31,7 +30,7 @@ pub async fn get_data_commitment(start_block: u64, end_block: u64) {
31
30
32
let res = reqwest::get(url.clone()).await;
33
34
- debug!("Data Commitment Response: {:?}", res.unwrap())
+ tracing::debug!("Data Commitment Response: {:?}", res.unwrap())
35
}
36
37
/// Generate a proof between the given trusted and target blocks.
0 commit comments