blvm-node 0.1.2

Bitcoin Commons BLVM: Minimal Bitcoin node implementation using blvm-protocol and blvm-consensus
1
2
3
4
5
6
7
8
9
10
11
12
//! CLI subcommands contributed by blvm-node.
//!
//! Run logic for commands wired into the blvm binary.
//! blvm defines the Command enum; these modules provide the execution.

mod config_convert;
#[cfg(feature = "rocksdb")]
mod migrate;

pub use config_convert::run_config_convert_core;
#[cfg(feature = "rocksdb")]
pub use migrate::run_migrate_core_cli;