diff --git a/nomos-cli/src/api/da.rs b/nomos-cli/src/api/da.rs index 83f9564d..7a3d3c07 100644 --- a/nomos-cli/src/api/da.rs +++ b/nomos-cli/src/api/da.rs @@ -4,12 +4,12 @@ use nomos_core::da::blob; use reqwest::Url; pub async fn get_blobs( - explorer: &Url, + node: &Url, ids: Vec<::Hash>, ) -> Result, reqwest::Error> { const BLOBS_PATH: &str = "da/blobs"; CLIENT - .post(explorer.join(BLOBS_PATH).unwrap()) + .post(node.join(BLOBS_PATH).unwrap()) .json(&ids) .send() .await?