diff --git a/web3_proxy/tests/test_users.rs b/web3_proxy/tests/test_users.rs index edae850d..5603c8b8 100644 --- a/web3_proxy/tests/test_users.rs +++ b/web3_proxy/tests/test_users.rs @@ -1,11 +1,8 @@ mod common; use crate::common::TestApp; -use axum::headers::Authorization; use ethers::{signers::Signer, types::Signature}; -use hashbrown::HashMap; use serde::Deserialize; -use serde_json::Value; use tracing::{debug, info, trace}; use ulid::Ulid; use web3_proxy::frontend::users::authentication::PostLogin; @@ -14,10 +11,10 @@ use web3_proxy::frontend::users::authentication::PostLogin; #[derive(Debug, Deserialize)] struct LoginPostResponse { pub bearer_token: Ulid, - pub rpc_keys: Value, - /// unknown data gets put here - #[serde(flatten, default = "HashMap::default")] - pub extra: HashMap, + // pub rpc_keys: Value, + // /// unknown data gets put here + // #[serde(flatten, default = "HashMap::default")] + // pub extra: HashMap, } /// TODO: 191 and the other message formats in another test