Skip to main content

tempo_commonware_node/epoch/
mod.rs

1//! Epoch logic used by tempo.
2//!
3//! All logic is written with the assumption that there are at least 3 heights
4//! per epoch. Having less heights per epoch will not immediately break the
5//! logic, but it might lead to strange behavior and is not supported.
6//!
7//! Note that either way, 3 blocks per epoch is a highly unreasonable number.
8
9pub(crate) mod manager;
10mod scheme_provider;
11
12pub(crate) use scheme_provider::SchemeProvider;