Skip to content

Commit

Permalink
collection fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ethyi committed Apr 21, 2023
1 parent 088e0bd commit cbc20ca
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion bubblegum/program/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1558,7 +1558,11 @@ pub mod bubblegum {
metadata.seller_fee_basis_points,
true,
metadata.is_mutable,
metadata.collection.map(|c| c.adapt()),
metadata.collection.map(|c| {
let mut collection = c.adapt();
collection.verified = false;
collection
}),
metadata.uses.map(|u| u.adapt()),
None,
),
Expand Down

0 comments on commit cbc20ca

Please sign in to comment.