We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cae330f commit 259dedaCopy full SHA for 259deda
mithril-common/src/entities/signed_entity_type.rs
@@ -91,9 +91,8 @@ impl SignedEntityType {
91
pub fn get_open_message_timeout(&self) -> Option<Duration> {
92
match self {
93
Self::MithrilStakeDistribution(_) | Self::CardanoImmutableFilesFull(_) => None,
94
- Self::CardanoStakeDistribution(_) | Self::CardanoTransactions(_) => {
95
- Some(Duration::from_secs(600))
96
- }
+ Self::CardanoStakeDistribution(_) => Some(Duration::from_secs(600)),
+ Self::CardanoTransactions(_) => Some(Duration::from_secs(1800)),
97
}
98
99
0 commit comments