We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 951f189 commit e9a9ee0Copy full SHA for e9a9ee0
crates/node/src/geth.rs
@@ -219,6 +219,9 @@ impl EthereumNode for Instance {
219
let error_string = error.to_string();
220
if error_string.contains("transaction indexing is in progress") {
221
if retries == 60 {
222
+ tracing::error!(
223
+ "Polled for transaction receipt for 60 seconds but failed to get it"
224
+ );
225
break Err(error.into());
226
} else {
227
tracing::trace!(
0 commit comments