From b9f16869fbca4562895fc28bf0bb7a3e4e0b53ae Mon Sep 17 00:00:00 2001 From: Bryan Stitt Date: Fri, 20 May 2022 05:30:14 +0000 Subject: [PATCH] cleanup --- web3-proxy/src/main.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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;