Skip to content

Commit 259deda

Browse files
committed
fix: update signed entity signing timeout for Cardano transactions
From '600s' to '1800s'.
1 parent cae330f commit 259deda

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

mithril-common/src/entities/signed_entity_type.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,8 @@ impl SignedEntityType {
9191
pub fn get_open_message_timeout(&self) -> Option<Duration> {
9292
match self {
9393
Self::MithrilStakeDistribution(_) | Self::CardanoImmutableFilesFull(_) => None,
94-
Self::CardanoStakeDistribution(_) | Self::CardanoTransactions(_) => {
95-
Some(Duration::from_secs(600))
96-
}
94+
Self::CardanoStakeDistribution(_) => Some(Duration::from_secs(600)),
95+
Self::CardanoTransactions(_) => Some(Duration::from_secs(1800)),
9796
}
9897
}
9998

0 commit comments

Comments
 (0)