12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- //! LND environment variables
- use std::env;
- use std::path::PathBuf;
- use crate::config::Lnd;
- // LND environment variables
- pub const ENV_LND_ADDRESS: &str = "CDK_MINTD_LND_ADDRESS";
- pub const ENV_LND_CERT_FILE: &str = "CDK_MINTD_LND_CERT_FILE";
- pub const ENV_LND_MACAROON_FILE: &str = "CDK_MINTD_LND_MACAROON_FILE";
- pub const ENV_LND_FEE_PERCENT: &str = "CDK_MINTD_LND_FEE_PERCENT";
- pub const ENV_LND_RESERVE_FEE_MIN: &str = "CDK_MINTD_LND_RESERVE_FEE_MIN";
- impl Lnd {
- pub fn from_env(mut self) -> Self {
- if let Ok(address) = env::var(ENV_LND_ADDRESS) {
- self.address = address;
- }
- if let Ok(cert_path) = env::var(ENV_LND_CERT_FILE) {
- self.cert_file = PathBuf::from(cert_path);
- }
- if let Ok(macaroon_path) = env::var(ENV_LND_MACAROON_FILE) {
- self.macaroon_file = PathBuf::from(macaroon_path);
- }
- if let Ok(fee_str) = env::var(ENV_LND_FEE_PERCENT) {
- if let Ok(fee) = fee_str.parse() {
- self.fee_percent = fee;
- }
- }
- if let Ok(reserve_fee_str) = env::var(ENV_LND_RESERVE_FEE_MIN) {
- if let Ok(reserve_fee) = reserve_fee_str.parse::<u64>() {
- self.reserve_fee_min = reserve_fee.into();
- }
- }
- self
- }
- }
|