logs about current block

This commit is contained in:
2025-07-19 07:12:18 -04:00
parent afd21a5f2a
commit ca10284479
2 changed files with 10 additions and 6 deletions

View File

@@ -499,7 +499,7 @@ fn parse_env_netconfig<'a>(mut cfg_lock: MutexGuard<'a, MyConfig>, chain: &'a st
}
}
if let Ok(value) = env::var(format!("BAL_SERVER_{}_FIXE_FEE",chain.to_uppercase())) {
if let Ok(value) = env::var(format!("BAL_SERVER_{}_FIXED_FEE",chain.to_uppercase())) {
if let Ok(v) = value.parse::<u64>(){
cfg.fixed_fee = v;
}