diff --git a/src/bitcoin.rs b/src/bitcoin.rs index 6445469..9b9ded9 100644 --- a/src/bitcoin.rs +++ b/src/bitcoin.rs @@ -6,7 +6,6 @@ use std::{ time::{Duration, Instant}, }; -use crate::log_provider::LogPathProvider; use anyhow::{bail, Context}; use async_trait::async_trait; use bitcoin::Address; @@ -22,7 +21,7 @@ use super::{ traits::{NodeT, Restart, SpawnOutput}, Result, }; -use crate::node::NodeKind; +use crate::{log_provider::LogPathProvider, node::NodeKind}; pub const FINALITY_DEPTH: u64 = 8; diff --git a/src/framework.rs b/src/framework.rs index 65c4a7c..d667b6d 100644 --- a/src/framework.rs +++ b/src/framework.rs @@ -122,7 +122,6 @@ impl TestFramework { .with_light_client_prover .then(|| LogPathProvider::as_erased(&self.ctx.config.light_client_prover)), ]) - .into_iter() .flatten() .collect() }