Merge pull request #552 from ok300/ok300-fix-just-final-check

Fix "just final-check"
This commit is contained in:
thesimplekid
2025-01-21 14:53:50 +00:00
committed by GitHub
2 changed files with 5 additions and 3 deletions

View File

@@ -45,8 +45,8 @@ ln_backend = "cln"
#Required if using cln backend path to rpc
cln_path = ""
rpc_path = ""
# fee_percent=0.04
# reserve_fee_min=4
fee_percent = 0.04
reserve_fee_min = 4
# [strike]
# For the Webhook subscription, the url under [info] must be a valid, absolute, non-local, https url

View File

@@ -221,7 +221,9 @@ impl Settings {
match from_file {
Ok(f) => f,
Err(e) => {
tracing::warn!("Error reading config file ({:?})", e);
tracing::error!(
"Error reading config file, falling back to defaults. Error: {e:?}"
);
default_settings
}
}