Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Larkooo committed Apr 26, 2024
1 parent 440980f commit 6cae630
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions crates/torii/core/src/engine.rs
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,10 @@ impl<P: Provider + Sync> Engine<P> {
match e.to_string().as_str() {
"TransactionHashNotFound" => {
warn!(target: LOG_TARGET, error = %e, transaction_hash = %format!("{:#x}", transaction.transaction_hash()), "Processing pending transaction.");
// We failed to fetch the transaction, which might be due to us indexing the pending transaction too fast.
// We will fail silently and retry processing the transaction in the next iteration.
// We failed to fetch the transaction, which might be due to us indexing
// the pending transaction too fast. We will
// fail silently and retry processing the transaction in the next
// iteration.
return Ok(pending_block_tx);
}
_ => {
Expand Down

0 comments on commit 6cae630

Please sign in to comment.