From a2dbde5870086be70c048b31f45b79061b01b6f0 Mon Sep 17 00:00:00 2001 From: Tomasz Pastusiak Date: Wed, 30 Oct 2024 11:54:08 +0100 Subject: [PATCH] Fix clippy --- crates/iota/src/iota_commands.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/iota/src/iota_commands.rs b/crates/iota/src/iota_commands.rs index 002478a8aa4..ea33ca93d87 100644 --- a/crates/iota/src/iota_commands.rs +++ b/crates/iota/src/iota_commands.rs @@ -757,6 +757,7 @@ async fn start( fullnode_url.clone(), ReaderWriterConfig::writer_mode(None), data_ingestion_path.clone(), + None, ) .await; info!("Indexer in writer mode started"); @@ -767,6 +768,7 @@ async fn start( fullnode_url.clone(), ReaderWriterConfig::reader_mode(indexer_address.to_string()), data_ingestion_path, + None, ) .await; info!("Indexer in reader mode started");