diff --git a/mithril-common/src/entities/signed_entity_type.rs b/mithril-common/src/entities/signed_entity_type.rs index 50fd930ecc4..b613e9fbc67 100644 --- a/mithril-common/src/entities/signed_entity_type.rs +++ b/mithril-common/src/entities/signed_entity_type.rs @@ -91,9 +91,8 @@ impl SignedEntityType { pub fn get_open_message_timeout(&self) -> Option { match self { Self::MithrilStakeDistribution(_) | Self::CardanoImmutableFilesFull(_) => None, - Self::CardanoStakeDistribution(_) | Self::CardanoTransactions(_) => { - Some(Duration::from_secs(600)) - } + Self::CardanoStakeDistribution(_) => Some(Duration::from_secs(600)), + Self::CardanoTransactions(_) => Some(Duration::from_secs(1800)), } }