ckb-testkit 0.0.1

ckb testkit
1
2
3
4
5
6
7
8
9
10
use std::path::PathBuf;

#[derive(Debug, Clone, Default)]
pub struct NodeOptions {
    pub node_name: String,
    pub ckb_binary: PathBuf,
    pub initial_database: &'static str,
    pub chain_spec: &'static str,
    pub app_config: &'static str,
}