diff --git a/crates/cdk/src/nuts/nut17/mod.rs b/crates/cdk/src/nuts/nut17/mod.rs index a7b0698c..0160cc64 100644 --- a/crates/cdk/src/nuts/nut17/mod.rs +++ b/crates/cdk/src/nuts/nut17/mod.rs @@ -44,9 +44,7 @@ pub struct SupportedSettings { impl Default for SupportedSettings { fn default() -> Self { - SupportedSettings { - supported: vec![SupportedMethods::default()], - } + SupportedSettings { supported: vec![] } } } @@ -67,11 +65,7 @@ impl SupportedMethods { Self { method, unit, - commands: vec![ - "bolt11_mint_quote".to_owned(), - "bolt11_melt_quote".to_owned(), - "proof_state".to_owned(), - ], + commands: Vec::new(), } } }