Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
Gianmarco Fraccaroli committed Feb 6, 2024
1 parent 325a92a commit bc65614
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/handler/faucet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,6 @@ pub async fn request_challenge(
State(mut state): State<FaucetState>,
Path(player_id): Path<String>,
) -> Result<Json<FaucetResponseDto>, ApiError> {
println!(
"{}",
format!(
"https://{}/api/v1/player/exists/{}",
state.webserver_host, player_id
)
);
let is_player = match reqwest::get(format!(
"https://{}/api/v1/player/exists/{}",
state.webserver_host, player_id
Expand Down

0 comments on commit bc65614

Please sign in to comment.