12 lines
540 B
Rust
12 lines
540 B
Rust
// file: kb-lib/src/materializer/trades/constants.rs
|
|
// version: 1
|
|
|
|
//! Local constants for the trades materializer.
|
|
|
|
/// Stable runtime component name for the trades materializer.
|
|
pub(crate) const MT_TRADES_COMPONENT_NAME: &str = "kb-lib.materializer.trades";
|
|
/// Stable processor name persisted by the replay ledger.
|
|
pub(crate) const MT_TRADES_PROCESSOR_NAME: &str = "materializer.trades";
|
|
/// Empty family boundary retained while the materializer is reserved.
|
|
pub(crate) const MT_TRADES_ACCEPTED_FAMILIES: &[crate::MdEventFamily] = &[];
|