Skip to content

Commit

Permalink
fix endpoint double slash
Browse files Browse the repository at this point in the history
  • Loading branch information
rob-maron committed Feb 13, 2025
1 parent b289f7e commit 16fdfbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hotshot-task-impls/src/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ pub mod v0_1 {
"{LEGACY_BUILDER_MODULE}/claimheaderinput/{block_hash}/{view_number}/{sender}/{encoded_signature}"
);

let ep = format!("{}/{}", self.base_url, endpoint);
let ep = format!("{}{}", self.base_url, endpoint);
let response = reqwest::get(ep.clone()).await;
println!("requested from {}: {:?}", ep, response);

Expand Down

0 comments on commit 16fdfbf

Please sign in to comment.