Skip to content

Commit

Permalink
Clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
jfldde committed Oct 8, 2024
1 parent 0199000 commit a3cb73a
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ bollard = { version = "0.17.1" }
futures = "0.3"
hex = { version = "0.4.3", default-features = false, features = ["serde"] }
jsonrpsee = { version = "0.24.2", features = ["http-client", "ws-client"] }
log = "0.4"
rand = "0.8"
serde = { version = "1.0.192", default-features = false, features = ["alloc", "derive"] }
serde_json = { version = "1.0", default-features = false }
Expand Down
1 change: 0 additions & 1 deletion src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ use jsonrpsee::{
http_client::{HttpClient, HttpClientBuilder},
rpc_params,
};
use log::debug;
use sov_ledger_rpc::client::RpcClient;
use sov_rollup_interface::rpc::{
SequencerCommitmentResponse, SoftConfirmationResponse, VerifiedProofResponse,
Expand Down
2 changes: 1 addition & 1 deletion src/light_client_prover.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
use std::time::SystemTime;

use anyhow::bail;
use log::debug;
use tokio::time::{sleep, Duration};
use tracing::debug;

use super::{config::FullLightClientProverConfig, Result};
use crate::node::Node;
Expand Down
1 change: 0 additions & 1 deletion src/node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ use std::{

use anyhow::{bail, Context};
use async_trait::async_trait;
use log::debug;
use serde::Serialize;
use tokio::{
process::Command,
Expand Down

0 comments on commit a3cb73a

Please sign in to comment.