We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23246a9 commit 2ede2a1Copy full SHA for 2ede2a1
1 file changed
web3_proxy/src/rpcs/one.rs
@@ -798,6 +798,9 @@ impl Web3Rpc {
798
799
let detailed_healthcheck = new_total_requests - old_total_requests < 5;
800
801
+ // TODO: i think there is an erigon bug when fetching transactions from a fresh block. disable detailed health checks for now
802
+ let detailed_healthcheck = false;
803
+
804
// TODO: if this fails too many times, reset the connection
805
if let Err(err) = rpc.check_health(detailed_healthcheck, error_handler).await {
806
rpc.healthy.store(false, atomic::Ordering::SeqCst);
0 commit comments