diff --git a/src/client/epochs.rs b/src/client/epochs.rs index d2b8909..6b60a46 100644 --- a/src/client/epochs.rs +++ b/src/client/epochs.rs @@ -12,7 +12,7 @@ impl Maestro { } pub async fn specific_epoch(&self, epoch_no: i32) -> Result> { - let url = format!("/epochs/{}/info", epoch_no); + let url = format!("/epochs/{}", epoch_no); let resp = self.get(&url).await?; let specific_epoch = serde_json::from_str(&resp).map_err(|e| Box::new(e) as Box)?;