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 792b295 commit d89c18aCopy full SHA for d89c18a
mithril-test-lab/mithril-end-to-end/src/mithril/infrastructure.rs
@@ -12,6 +12,8 @@ use slog_scope::info;
12
use std::borrow::BorrowMut;
13
use std::path::PathBuf;
14
use std::sync::Arc;
15
+use std::time::Duration;
16
+use tokio::time::sleep;
17
18
use super::signer::SignerConfig;
19
@@ -70,6 +72,7 @@ impl MithrilInfrastructure {
70
72
if config.mithril_era_reader_adapter == "cardano-chain" {
71
73
assertions::register_era_marker(&mut aggregator, &config.devnet, &config.mithril_era)
74
.await?;
75
+ sleep(Duration::from_secs(5)).await;
76
}
77
aggregator.serve()?;
78
0 commit comments