raiden_state_machine/
lib.rs

1#![warn(clippy::missing_docs_in_private_items)]
2//! Manages a complete chain state with ability to transition state changes and returns events.
3
4/// State machine constants.
5pub mod constants;
6/// State machine errors
7pub mod errors;
8/// State machine transitioners..
9pub mod machine;
10/// State machine storage.
11#[cfg(feature = "storage")]
12pub mod storage;
13#[cfg(test)]
14pub mod tests;
15/// State machine types.
16pub mod types;
17/// State machine views.
18pub mod views;