From 6cae630266537f8da6c81e80a67eaa6ce1e22bb6 Mon Sep 17 00:00:00 2001 From: Nasr Date: Fri, 26 Apr 2024 15:11:05 -0400 Subject: [PATCH] fmt --- crates/torii/core/src/engine.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/crates/torii/core/src/engine.rs b/crates/torii/core/src/engine.rs index 7cd13110f1..46278fad1f 100644 --- a/crates/torii/core/src/engine.rs +++ b/crates/torii/core/src/engine.rs @@ -175,8 +175,10 @@ impl Engine

{ 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); } _ => {