From e9a9ee02c9fb3e4f91700e2cd17d41c9072d1d74 Mon Sep 17 00:00:00 2001 From: Omar Abdulla Date: Thu, 10 Jul 2025 17:07:51 +0300 Subject: [PATCH] Small fix to logging consistency --- crates/node/src/geth.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/crates/node/src/geth.rs b/crates/node/src/geth.rs index 65f4a8d..066b376 100644 --- a/crates/node/src/geth.rs +++ b/crates/node/src/geth.rs @@ -219,6 +219,9 @@ impl EthereumNode for Instance { let error_string = error.to_string(); if error_string.contains("transaction indexing is in progress") { if retries == 60 { + tracing::error!( + "Polled for transaction receipt for 60 seconds but failed to get it" + ); break Err(error.into()); } else { tracing::trace!(