mithril-cardano-node-internal-database 0.1.11

Mechanisms that allow Mithril nodes to read the files of a Cardano node internal database and compute digests from them
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Test utilities.
//!
//! ⚠ Do not use in production code ⚠
//!
//! This module provides in particular the [DummyCardanoDbBuilder] to generate and test doubles for the traits defined in this crate.

pub mod double;
mod dummy_cardano_db;
pub mod fake_data;

pub use dummy_cardano_db::{DummyCardanoDb, DummyCardanoDbBuilder};

#[cfg(test)]
mithril_common::define_test_logger!();