Skip to content

Commit

Permalink
chore: strip url out of error message
Browse files Browse the repository at this point in the history
  • Loading branch information
kylezs committed Nov 4, 2024
1 parent eab77aa commit bd49ea8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions engine/src/sol/rpc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ async fn call_rpc_raw(
.json(&request_body)
.send()
.await
.map_err(reqwest::Error::without_url)
.map_err(Error::Transport)?;

let mut json = response.json::<serde_json::Value>().await.map_err(Error::Transport)?;
Expand Down

0 comments on commit bd49ea8

Please sign in to comment.