mirror of
https://github.com/logos-blockchain/logos-blockchain-simulations.git
synced 2026-01-10 17:13:09 +00:00
First stage of adding the simulation engine that was living in older versions of nomos-nod. It will change in the future generalising it for better compatibility.
11 lines
249 B
Rust
11 lines
249 B
Rust
pub mod network;
|
|
pub mod node;
|
|
pub mod output_processors;
|
|
pub mod runner;
|
|
pub mod settings;
|
|
pub mod streaming;
|
|
pub mod warding;
|
|
|
|
static START_TIME: once_cell::sync::Lazy<std::time::Instant> =
|
|
once_cell::sync::Lazy::new(std::time::Instant::now);
|