mirror of
https://github.com/0glabs/0g-storage-node.git
synced 2025-01-13 16:45:18 +00:00
13 lines
527 B
Rust
13 lines
527 B
Rust
|
/// Names for the default directories.
|
||
|
pub const DEFAULT_ROOT_DIR: &str = ".lighthouse";
|
||
|
pub const DEFAULT_BEACON_NODE_DIR: &str = "beacon";
|
||
|
pub const DEFAULT_NETWORK_DIR: &str = "network";
|
||
|
pub const DEFAULT_VALIDATOR_DIR: &str = "validators";
|
||
|
pub const DEFAULT_SECRET_DIR: &str = "secrets";
|
||
|
pub const DEFAULT_WALLET_DIR: &str = "wallets";
|
||
|
|
||
|
pub const DEFAULT_HARDCODED_NETWORK: &str = "mainnet";
|
||
|
|
||
|
/// Base directory name for unnamed testnets passed through the --testnet-dir flag
|
||
|
pub const CUSTOM_TESTNET_DIR: &str = "custom";
|