From 52495e4f59bc09def6920ee4b2ccaab15f90149b Mon Sep 17 00:00:00 2001
From: jfldde <168934971+jfldde@users.noreply.github.com>
Date: Wed, 9 Oct 2024 15:22:52 +0100
Subject: [PATCH] lint

---
 src/bitcoin.rs   | 3 +--
 src/framework.rs | 1 -
 2 files changed, 1 insertion(+), 3 deletions(-)

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()
     }