From 69a090522b21d74f44391897c098d3c72b8c2370 Mon Sep 17 00:00:00 2001 From: Bryan Stitt Date: Mon, 17 Oct 2022 23:16:09 +0000 Subject: [PATCH] more todo --- TODO.md | 1 + web3_proxy/src/frontend/users.rs | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/TODO.md b/TODO.md index ebe0ddf0..2e3f44a9 100644 --- a/TODO.md +++ b/TODO.md @@ -234,6 +234,7 @@ These are roughly in order of completition These are not yet ordered. +- [ ] geth sometimes gives an empty response instead of an error response. figure out a good way to catch this and not serve it - [ ] GET balance endpoint - [ ] POST balance endpoint - [ ] eth_1 | 2022-10-11T22:14:57.408114Z ERROR http_request:request:try_send_all_upstream_servers: web3_proxy::rpcs::request: bad response! err=JsonRpcClientError(JsonRpcError(JsonRpcError { code: -32000, message: "INTERNAL_ERROR: existing tx with same hash", data: None })) method=eth_sendRawTransaction rpc=local_erigon_alpha_archive id=01GF4HV03Y4ZNKQV8DW5NDQ5CG method=POST authorized_request=User(Some(SqlxMySqlPoolConnection), AuthorizedKey { ip: 10.11.12.15, origin: None, user_key_id: 4, log_revert_chance: 0.0000 }) self=Web3Connections { conns: {"local_erigon_alpha_archive_ws": Web3Connection { name: "local_erigon_alpha_archive_ws", blocks: "all", .. }, "local_geth_ws": Web3Connection { name: "local_geth_ws", blocks: 64, .. }, "local_erigon_alpha_archive": Web3Connection { name: "local_erigon_alpha_archive", blocks: "all", .. }}, .. } authorized_request=Some(User(Some(SqlxMySqlPoolConnection), AuthorizedKey { ip: 10.11.12.15, origin: None, user_key_id: 4, log_revert_chance: 0.0000 })) request=JsonRpcRequest { id: RawValue(39), method: "eth_sendRawTransaction", .. } request_metadata=Some(RequestMetadata { datetime: 2022-10-11T22:14:57.406829095Z, period_seconds: 60, request_bytes: 633, backend_requests: 0, no_servers: 0, error_response: false, response_bytes: 0, response_millis: 0 }) block_needed=None diff --git a/web3_proxy/src/frontend/users.rs b/web3_proxy/src/frontend/users.rs index 1b29fff0..1cb75a79 100644 --- a/web3_proxy/src/frontend/users.rs +++ b/web3_proxy/src/frontend/users.rs @@ -405,7 +405,7 @@ pub async fn user_profile_get( TypedHeader(Authorization(bearer_token)): TypedHeader>, Extension(app): Extension>, ) -> FrontendResult { - todo!("get_user_profile"); + todo!("user_profile_get"); } /// `GET /user/stats` -- Use a bearer token to get the user's key stats such as bandwidth used and methods requested. @@ -419,7 +419,7 @@ pub async fn user_stats_get( TypedHeader(Authorization(bearer_token)): TypedHeader>, Extension(app): Extension>, ) -> FrontendResult { - todo!("get_user_stats"); + todo!("user_stats_get"); } /// `GET /user/profile` -- Use a bearer token to get the user's profile such as their optional email address.