Skip to content

Commit

Permalink
Derive Default on UpdateArgs
Browse files Browse the repository at this point in the history
  • Loading branch information
danenbm committed Sep 22, 2023
1 parent 0173305 commit 367d3f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion programs/bubblegum/program/src/state/metaplex_adapter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ pub struct MetadataArgs {
pub creators: Vec<Creator>,
}

#[derive(AnchorSerialize, AnchorDeserialize, PartialEq, Eq, Debug, Clone)]
#[derive(AnchorSerialize, AnchorDeserialize, PartialEq, Eq, Debug, Clone, Default)]
pub struct UpdateArgs {
pub name: Option<String>,
pub symbol: Option<String>,
Expand Down

0 comments on commit 367d3f3

Please sign in to comment.