27 lines
728 B
Rust
27 lines
728 B
Rust
use std::convert::TryFrom;
|
|
|
|
use liana::config::Config as LianaConfig;
|
|
|
|
use super::step::Context;
|
|
|
|
pub const DEFAULT_FILE_NAME: &str = "daemon.toml";
|
|
|
|
impl TryFrom<Context> for LianaConfig {
|
|
type Error = &'static str;
|
|
|
|
fn try_from(ctx: Context) -> Result<Self, Self::Error> {
|
|
if ctx.descriptor.is_none() {
|
|
return Err("config does not have a main Descriptor");
|
|
}
|
|
Ok(LianaConfig {
|
|
#[cfg(unix)]
|
|
daemon: false,
|
|
log_level: log::LevelFilter::Info,
|
|
main_descriptor: ctx.descriptor.unwrap(),
|
|
data_dir: ctx.data_dir,
|
|
bitcoin_config: ctx.bitcoin_config,
|
|
bitcoind_config: ctx.bitcoind_config,
|
|
})
|
|
}
|
|
}
|