@@ -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
@@ -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
}