From c41b645ac907275d2965af13ed674d3ef536a8a3 Mon Sep 17 00:00:00 2001 From: Balaji Arun Date: Thu, 14 Sep 2023 20:50:13 -0700 Subject: [PATCH] lint --- consensus/src/dag/bootstrap.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/consensus/src/dag/bootstrap.rs b/consensus/src/dag/bootstrap.rs index fa148cfe85a17b..605175a914ae35 100644 --- a/consensus/src/dag/bootstrap.rs +++ b/consensus/src/dag/bootstrap.rs @@ -16,7 +16,7 @@ use super::{ }; use crate::{ dag::{adapter::NotifierAdapter, dag_fetcher::DagFetcher}, - experimental::{buffer_manager::OrderedBlocks, commit_reliable_broadcast::DropGuard}, + experimental::buffer_manager::OrderedBlocks, network::IncomingDAGRequest, state_replication::{PayloadClient, StateComputer}, }; @@ -36,10 +36,6 @@ use aptos_types::{ ledger_info::{LedgerInfo, LedgerInfoWithSignatures}, validator_signer::ValidatorSigner, }; -use futures::{ - stream::{AbortHandle, Abortable}, - FutureExt, StreamExt, -}; use futures_channel::{ mpsc::{UnboundedReceiver, UnboundedSender}, oneshot,