Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions spl/src/metadata.rs
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ pub fn unverify_collection<'info>(
collection_authority_record: Option<Pubkey>,
) -> Result<()> {
let ix = mpl_token_metadata::instructions::UnverifyCollection {
collection: *ctx.accounts.metadata.key,
collection: *ctx.accounts.collection.key,
collection_authority: *ctx.accounts.collection_authority.key,
collection_authority_record,
collection_master_edition_account: *ctx.accounts.collection_master_edition_account.key,
Expand All @@ -529,7 +529,7 @@ pub fn unverify_sized_collection_item<'info>(
collection_authority_record: Option<Pubkey>,
) -> Result<()> {
let ix = mpl_token_metadata::instructions::UnverifySizedCollectionItem {
collection: *ctx.accounts.metadata.key,
collection: *ctx.accounts.collection.key,
collection_authority: *ctx.accounts.collection_authority.key,
collection_authority_record,
collection_master_edition_account: *ctx.accounts.collection_master_edition_account.key,
Expand Down
Loading