diff --git a/web3-proxy/src/main.rs b/web3-proxy/src/main.rs index 467bc8ac..e5ebfbae 100644 --- a/web3-proxy/src/main.rs +++ b/web3-proxy/src/main.rs @@ -5,16 +5,14 @@ mod connections; mod frontend; mod jsonrpc; -use jsonrpc::{JsonRpcErrorData, JsonRpcForwardedResponse}; use parking_lot::deadlock; -use serde_json::value::RawValue; use std::fs; use std::sync::atomic::{self, AtomicUsize}; use std::sync::Arc; use std::thread; use std::time::Duration; use tokio::runtime; -use tracing::{debug, error, info, trace, warn}; +use tracing::info; use tracing_subscriber::EnvFilter; use crate::app::Web3ProxyApp;