diff --git a/web3_proxy/src/app/mod.rs b/web3_proxy/src/app/mod.rs index 7876f2ed..70b0b6e4 100644 --- a/web3_proxy/src/app/mod.rs +++ b/web3_proxy/src/app/mod.rs @@ -648,7 +648,7 @@ impl Web3ProxyApp { top_config.app.max_block_lag, top_config.app.min_synced_rpcs, top_config.app.min_sum_soft_limit, - "balanced".to_string(), + "balanced rpcs".to_string(), pending_transactions.clone(), Some(pending_tx_sender.clone()), Some(watch_consensus_head_sender), @@ -676,7 +676,7 @@ impl Web3ProxyApp { None, 0, 0, - "protected".to_string(), + "protected rpcs".to_string(), pending_transactions.clone(), // TODO: subscribe to pending transactions on the private rpcs? they seem to have low rate limits, but they should have None, @@ -710,7 +710,7 @@ impl Web3ProxyApp { None, 0, 0, - "eip4337".to_string(), + "eip4337 rpcs".to_string(), pending_transactions.clone(), None, None, diff --git a/web3_proxy/src/rpcs/many.rs b/web3_proxy/src/rpcs/many.rs index e48d485b..e761f691 100644 --- a/web3_proxy/src/rpcs/many.rs +++ b/web3_proxy/src/rpcs/many.rs @@ -633,7 +633,7 @@ impl Web3Rpcs { None => { // none of the servers gave us a time to retry at debug!( - "{:?} - no servers on {:?} gave a retry time! Skipped {:?}", + "{:?} - no servers in {} gave a retry time! Skipped {:?}", request_ulid, self, skip );