Skip to content

Commit

Permalink
Fixed bug with Default as described in cashubtc#473 (comment)
Browse files Browse the repository at this point in the history
  • Loading branch information
crodas committed Dec 6, 2024
1 parent 392136e commit 641c301
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions crates/cdk/src/nuts/nut17/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,7 @@ pub struct SupportedSettings {

impl Default for SupportedSettings {
fn default() -> Self {
SupportedSettings {
supported: vec![SupportedMethods::default()],
}
SupportedSettings { supported: vec![] }
}
}

Expand All @@ -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(),
}
}
}
Expand Down

0 comments on commit 641c301

Please sign in to comment.