Skip to content

Commit

Permalink
Remove proxy from name
Browse files Browse the repository at this point in the history
  • Loading branch information
gianbelinche committed Oct 21, 2024
1 parent 0ae04c3 commit 1a9cf57
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ use crate::{
errors::EigenDAError,
};

pub struct EigenDAProxyClient {
pub struct EigenDAClient {
disperser: Arc<Mutex<DisperserClient<Channel>>>,
config: DisperserConfig,
}

impl EigenDAProxyClient {
impl EigenDAClient {
pub const BLOB_SIZE_LIMIT_IN_BYTES: usize = 2 * 1024 * 1024; // 2MB todo: add to config
pub const STATUS_QUERY_TIMEOUT: u64 = 1800; // 30 minutes todo: add to config
pub const STATUS_QUERY_RETRY_INTERVAL: u64 = 5; // 5 seconds todo: add to config
Expand Down Expand Up @@ -200,7 +200,7 @@ mod test {
eigenda_eth_rpc: "".to_string(),
eigenda_svc_manager_addr: "".to_string(),
};
let store = match EigenDAProxyClient::new(config).await {
let store = match EigenDAClient::new(config).await {
Ok(store) => store,
Err(e) => panic!("Failed to create EigenDAProxyClient {:?}", e),
};
Expand All @@ -222,7 +222,7 @@ mod test {
eigenda_eth_rpc: "".to_string(),
eigenda_svc_manager_addr: "".to_string(),
};
let store = match EigenDAProxyClient::new(config).await {
let store = match EigenDAClient::new(config).await {
Ok(store) => store,
Err(e) => panic!("Failed to create EigenDAProxyClient {:?}", e),
};
Expand Down
2 changes: 1 addition & 1 deletion core/node/eigenda_proxy/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use axum::{
};
use tokio::sync::watch;
mod blob_info;
mod eigenda_proxy_client;
mod eigenda_client;
mod errors;
mod memstore;

Expand Down

0 comments on commit 1a9cf57

Please sign in to comment.