From e7e949a53e853c3e8ebafb75b105f5d0b360443d Mon Sep 17 00:00:00 2001 From: Bryan Stitt Date: Wed, 19 Oct 2022 18:51:14 +0000 Subject: [PATCH] user_login_get does not need params --- web3_proxy/src/frontend/users.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/web3_proxy/src/frontend/users.rs b/web3_proxy/src/frontend/users.rs index 93e5c6b4..22b5e0d5 100644 --- a/web3_proxy/src/frontend/users.rs +++ b/web3_proxy/src/frontend/users.rs @@ -47,7 +47,6 @@ pub async fn user_login_get( // TODO: what does axum's error handling look like if the path fails to parse? // TODO: allow ENS names here? Path(mut params): Path>, - Query(query): Query>, ) -> FrontendResult { // give these named variables so that we drop them at the very end of this function let (_, _semaphore) = login_is_authorized(&app, ip).await?;