raiden-state-machine 0.1.0

Raiden Network implementation in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![warn(clippy::missing_docs_in_private_items)]
//! Manages a complete chain state with ability to transition state changes and returns events.

/// State machine constants.
pub mod constants;
/// State machine errors
pub mod errors;
/// State machine transitioners..
pub mod machine;
/// State machine storage.
#[cfg(feature = "storage")]
pub mod storage;
#[cfg(test)]
pub mod tests;
/// State machine types.
pub mod types;
/// State machine views.
pub mod views;