You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
slog::warn!(self.logger,"The fast bootstrap of the Cardano node is not available with the current parameters used in this command: the ledger state will be recomputed from genesis at startup of the Cardano node. Set the include_ancillary entry to true in the DownloadUnpackOptions.");
log_inspector.contains_log("The fast bootstrap of the Cardano node is not available with the current parameters used in this command: the ledger state will be recomputed from genesis at startup of the Cardano node. Set the include_ancillary entry to true in the DownloadUnpackOptions."),
621
+
"Expected log message not found, logs: {log_inspector}"
"The fast bootstrap of the Cardano node is not available with the current parameters used in this command: the ledger state will be recomputed from genesis at startup of the Cardano node. Use the extra function download_unpack_full to allow it."
262
+
);
258
263
usecrate::feedback::MithrilEvent;
259
264
let download_id = MithrilEvent::new_snapshot_download_id();
log_inspector.contains_log("WARN The fast bootstrap of the Cardano node is not available with the current parameters used in this command: the ledger state will be recomputed from genesis at startup of the Cardano node. Use the extra function download_unpack_full to allow it."),
651
+
"Expected log message not found, logs: {log_inspector}"
652
+
);
653
+
}
654
+
}
655
+
625
656
mod download_unpack_ancillary {
626
657
use mithril_common::crypto_helper::ManifestSigner;
627
658
use mithril_common::test_utils::fake_keys;
@@ -660,10 +691,7 @@ mod tests {
660
691
.unwrap();
661
692
662
693
assert!(
663
-
log_inspector.contains_log(
664
-
"Ancillary verification doesn't use the Mithril certification: it is \
665
-
done with a signature made with an IOG owned key."
Copy file name to clipboardExpand all lines: mithril-client/src/utils/mod.rs
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,8 @@
1
1
//! Utilities module
2
2
//! This module contains tools needed mostly for the snapshot download and unpack.
3
3
4
+
pubconstANCILLARIES_NOT_SIGNED_BY_MITHRIL:&str = "Ancillary verification does not use the Mithril certification: as a mitigation, IOG owned keys are used to sign these files.";
0 commit comments