From fffbda468dbf97c97fbbed8f5ec45449a373ec75 Mon Sep 17 00:00:00 2001 From: Bryan Stitt Date: Thu, 12 May 2022 01:38:27 +0000 Subject: [PATCH] remove debug logs --- config/example.toml | 4 ++++ web3-proxy/src/main.rs | 6 +----- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/config/example.toml b/config/example.toml index da00451d..aeef796d 100644 --- a/config/example.toml +++ b/config/example.toml @@ -6,6 +6,10 @@ url = "ws://127.0.0.1:8546" soft_limit = 200_000 + [balanced_rpc_tiers.0.ankr] + url = "https://rpc.ankr.com/eth" + soft_limit = 3_000 + [private_rpcs] [private_rpcs.eden] diff --git a/web3-proxy/src/main.rs b/web3-proxy/src/main.rs index 534e12c5..cac85089 100644 --- a/web3-proxy/src/main.rs +++ b/web3-proxy/src/main.rs @@ -6,7 +6,7 @@ mod jsonrpc; use std::fs; use std::sync::Arc; -use tracing::{info, trace, warn}; +use tracing::info; use warp::Filter; use warp::Reply; @@ -18,10 +18,6 @@ async fn main() -> anyhow::Result<()> { // install global collector configured based on RUST_LOG env var. tracing_subscriber::fmt::init(); - info!("test info"); - warn!("test warn"); - trace!("test trace"); - let cli_config: CliConfig = argh::from_env(); info!("Loading rpc config @ {}", cli_config.rpc_config_path);