Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions crates/optimism/txpool/src/supervisor/client.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
//! This is our custom implementation of validator struct

use crate::{
interop::MaybeInteropTransaction,
supervisor::{
metrics::SupervisorMetrics, parse_access_list_items_to_inbox_entries, ExecutingDescriptor,
InteropTxValidatorError,
Expand Down Expand Up @@ -139,8 +138,7 @@ impl SupervisorClient {
where
InputIter: IntoIterator<Item = TItem> + Send + 'a,
InputIter::IntoIter: Send + 'a,
TItem:
MaybeInteropTransaction + PoolTransaction + Transaction + Clone + Send + Sync + 'static,
TItem: PoolTransaction + Transaction + Send,
{
stream::iter(txs_to_revalidate.into_iter().map(move |tx_item| {
let client_for_async_task = self.clone();
Expand Down
Loading