From ff6b06079e689ad97bcb1e64983be80e5628c0b2 Mon Sep 17 00:00:00 2001 From: Daniel Savu <23065004+daniel-savu@users.noreply.github.com> Date: Thu, 28 Mar 2024 11:24:05 +0000 Subject: [PATCH] Half the relayer timeout on v3 (#3508) ### Description V3 counterpart of https://github.com/hyperlane-xyz/hyperlane-monorepo/pull/3431 Co-authored-by: nambrot --- rust/chains/hyperlane-ethereum/src/tx.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/chains/hyperlane-ethereum/src/tx.rs b/rust/chains/hyperlane-ethereum/src/tx.rs index f578a15f94..c569ff960a 100644 --- a/rust/chains/hyperlane-ethereum/src/tx.rs +++ b/rust/chains/hyperlane-ethereum/src/tx.rs @@ -51,7 +51,7 @@ where info!(?to, %data, ?tx_hash, "Dispatched tx"); - match tokio::time::timeout(Duration::from_secs(300), dispatched).await { + match tokio::time::timeout(Duration::from_secs(150), dispatched).await { // all good Ok(Ok(Some(receipt))) => { info!(?tx_hash, "confirmed transaction");