Skip to content

Commit

Permalink
refactor(relay_api): unneeded ref
Browse files Browse the repository at this point in the history
  • Loading branch information
alextes committed Sep 19, 2024
1 parent 9e0bcd6 commit d2b01c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mev_blocks/relay_api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ impl Default for RelayApiHttp {
impl RelayApi for RelayApiHttp {
async fn fetch_mev_blocks(&self, start_slot: i32, end_slot: i32) -> Vec<MevBlock> {
self.client
.get(&format!(
.get(format!(
"{}/api/block-production?start_slot={}&end_slot={}",
self.server_url, start_slot, end_slot
))
Expand Down

0 comments on commit d2b01c4

Please sign in to comment.