Skip to content

Commit

Permalink
style: rename extended_fetcher mod to eigenda_fetcher
Browse files Browse the repository at this point in the history
  • Loading branch information
samlaf committed Dec 17, 2024
1 parent 2410fde commit 484d77d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions bin/host/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pub mod extended_fetcher;
pub mod eigenda_fetcher;

pub mod eigenda_blobs;

Expand All @@ -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,
};
Expand Down
2 changes: 1 addition & 1 deletion bin/host/src/preimage.rs
Original file line number Diff line number Diff line change
@@ -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},
Expand Down
2 changes: 1 addition & 1 deletion bin/host/src/server.rs
Original file line number Diff line number Diff line change
@@ -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},
};
Expand Down

0 comments on commit 484d77d

Please sign in to comment.