Skip to content

Commit e9a9ee0

Browse files
committed
Small fix to logging consistency
1 parent 951f189 commit e9a9ee0

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

crates/node/src/geth.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,9 @@ impl EthereumNode for Instance {
219219
let error_string = error.to_string();
220220
if error_string.contains("transaction indexing is in progress") {
221221
if retries == 60 {
222+
tracing::error!(
223+
"Polled for transaction receipt for 60 seconds but failed to get it"
224+
);
222225
break Err(error.into());
223226
} else {
224227
tracing::trace!(

0 commit comments

Comments
 (0)