Skip to content

Commit

Permalink
Half the relayer timeout on v2
Browse files Browse the repository at this point in the history
  • Loading branch information
nambrot committed Mar 17, 2024
1 parent b230aa7 commit 56232e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust/chains/hyperlane-ethereum/src/tx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,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");
Expand Down

0 comments on commit 56232e1

Please sign in to comment.