Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into bf/vid-endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
bfish713 committed Mar 10, 2025
2 parents dc108e2 + 03b0f46 commit cafa76f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sequencer/src/catchup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ impl<ApiVer: StaticVersionType> StateCatchup for StatePeers<ApiVer> {
async fn try_fetch_leaves(&self, retry: usize, height: u64) -> anyhow::Result<Vec<Leaf2>> {
self.fetch(retry, |client| async move {
let leaf = client
.get::<Vec<Leaf2>>(&format!("catchup/{}/leafchain/", height))
.get::<Vec<Leaf2>>(&format!("catchup/{}/leafchain", height))
.send()
.await?;
anyhow::Ok(leaf)
Expand Down

0 comments on commit cafa76f

Please sign in to comment.