1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//! Subcoin Node Library.
//!
//! The main feature of this library is to start and run the node as a CLI application.

mod cli;
mod commands;
mod rpc;
mod substrate_cli;
mod transaction_pool;
mod utils;

pub use self::cli::run;

#[cfg(test)]
mod tests {
    use sc_cli::Database;

    #[test]
    fn rocksdb_disabled_in_substrate() {
        assert_eq!(
            Database::variants(),
            &["paritydb", "paritydb-experimental", "auto"],
        );
    }
}