mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-01-09 08:43:12 +00:00
12 lines
289 B
Rust
12 lines
289 B
Rust
|
|
use std::path::PathBuf;
|
||
|
|
|
||
|
|
use serde::{Deserialize, Serialize};
|
||
|
|
|
||
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
||
|
|
pub struct NodeConfig {
|
||
|
|
///Home dir of sequencer storage
|
||
|
|
pub home: PathBuf,
|
||
|
|
///Override rust log (env var logging level)
|
||
|
|
pub override_rust_log: Option<String>,
|
||
|
|
}
|