From ab9164e873dbbcd56efb80c646189463020f438a Mon Sep 17 00:00:00 2001 From: Omar Abdulla Date: Thu, 6 Nov 2025 06:40:20 +0300 Subject: [PATCH] Reduce the timeout for transactions to 2 minutes --- crates/node/src/provider_utils/provider.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/node/src/provider_utils/provider.rs b/crates/node/src/provider_utils/provider.rs index c8f5655..f10b3b6 100644 --- a/crates/node/src/provider_utils/provider.rs +++ b/crates/node/src/provider_utils/provider.rs @@ -104,7 +104,7 @@ where }; debug!(%tx_hash, "Submitted Transaction"); - pending_transaction.set_timeout(Some(Duration::from_secs(240))); + pending_transaction.set_timeout(Some(Duration::from_secs(120))); let tx_hash = pending_transaction.watch().await.context(format!( "Transaction inclusion watching timeout for {tx_hash}" ))?;