Skip to content

Commit

Permalink
Add spl token program to digital asset
Browse files Browse the repository at this point in the history
  • Loading branch information
danenbm committed Aug 27, 2024
1 parent caba497 commit 58a0b4d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion programs/bubblegum/program/tests/utils/digital_asset.rs
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,8 @@ impl DigitalAsset {
.mint(self.mint.pubkey(), true)
.authority(payer_pubkey)
.payer(payer_pubkey)
.update_authority(payer_pubkey, true);
.update_authority(payer_pubkey, true)
.spl_token_program(Some(spl_token::id()));

let edition = match &token_standard {
TokenStandard::NonFungible | TokenStandard::ProgrammableNonFungible => {
Expand Down

0 comments on commit 58a0b4d

Please sign in to comment.