Skip to content

Commit

Permalink
Increase tx confirmation timeout to 300s (#1832)
Browse files Browse the repository at this point in the history
* Increased tx confirmation timeout to 300s

* changelog
  • Loading branch information
adizere authored Feb 2, 2022
1 parent c560998 commit a6c8faf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Increased tx confirmation timeout to 300s to prevent aggressive tx
resubmission ([#1663](https://github.com/informalsystems/ibc-rs/issues/1663))
2 changes: 1 addition & 1 deletion relayer/src/link/pending.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ use crate::{
link::{operational_data::OperationalData, relay_sender::AsyncReply, RelaySummary, TxHashes},
};

pub const TIMEOUT: Duration = Duration::from_secs(100);
pub const TIMEOUT: Duration = Duration::from_secs(300);

/// A wrapper over an [`OperationalData`] that is pending.
/// Additionally holds all the necessary information
Expand Down

0 comments on commit a6c8faf

Please sign in to comment.