diff --git a/bin/host/src/extended_fetcher/mod.rs b/bin/host/src/eigenda_fetcher/mod.rs similarity index 100% rename from bin/host/src/extended_fetcher/mod.rs rename to bin/host/src/eigenda_fetcher/mod.rs diff --git a/bin/host/src/lib.rs b/bin/host/src/lib.rs index f27d4c5..c10aaab 100644 --- a/bin/host/src/lib.rs +++ b/bin/host/src/lib.rs @@ -1,4 +1,4 @@ -pub mod extended_fetcher; +pub mod eigenda_fetcher; pub mod eigenda_blobs; @@ -14,7 +14,7 @@ use kona_host::kv; use crate::eigenda_blobs::OnlineEigenDABlobProvider; use anyhow::{anyhow, Result}; -use extended_fetcher::FetcherWithEigenDASupport; +use eigenda_fetcher::FetcherWithEigenDASupport; use kona_preimage::{ BidirectionalChannel, HintReader, HintWriter, NativeChannel, OracleReader, OracleServer, }; diff --git a/bin/host/src/preimage.rs b/bin/host/src/preimage.rs index 1b48a79..7196a35 100644 --- a/bin/host/src/preimage.rs +++ b/bin/host/src/preimage.rs @@ -1,6 +1,6 @@ //! Contains the implementations of the [HintRouter] and [PreimageFetcher] traits.] -use crate::{extended_fetcher::FetcherWithEigenDASupport, kv::KeyValueStore}; +use crate::{eigenda_fetcher::FetcherWithEigenDASupport, kv::KeyValueStore}; use async_trait::async_trait; use kona_preimage::{ errors::{PreimageOracleError, PreimageOracleResult}, diff --git a/bin/host/src/server.rs b/bin/host/src/server.rs index af9a9ab..514072a 100644 --- a/bin/host/src/server.rs +++ b/bin/host/src/server.rs @@ -1,7 +1,7 @@ //! This module contains the [PreimageServer] struct and its implementation. use crate::{ - extended_fetcher::FetcherWithEigenDASupport, + eigenda_fetcher::FetcherWithEigenDASupport, kv::KeyValueStore, preimage::{OfflinePreimageFetcher, OnlineHintRouter, OnlinePreimageFetcher}, };