Forráskód Böngészése

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

Fix "just final-check"
thesimplekid 2 hónapja
szülő
commit
460ea5c09b

+ 2 - 2
crates/cdk-mintd/example.config.toml

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

+ 3 - 1
crates/cdk-mintd/src/config.rs

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