diff --git a/Cargo.lock b/Cargo.lock index f97160e..dae4661 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4725,7 +4725,7 @@ checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" [[package]] name = "sugar-cli" -version = "2.7.0" +version = "2.7.1" dependencies = [ "anchor-client", "anchor-lang", diff --git a/Cargo.toml b/Cargo.toml index 31e7e74..0680102 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sugar-cli" -version = "2.7.0" +version = "2.7.1" edition = "2021" description = "Command line tool for creating and managing Metaplex Candy Machines." license = "Apache-2.0" diff --git a/src/mint/process.rs b/src/mint/process.rs index 8eb5adc..ea0dc55 100644 --- a/src/mint/process.rs +++ b/src/mint/process.rs @@ -255,11 +255,8 @@ pub async fn mint( let metadata_pda = find_metadata_pda(&nft_mint.pubkey()); let master_edition_pda = find_master_edition_pda(&nft_mint.pubkey()); - let priority_fee_ix = ComputeBudgetInstruction::set_compute_unit_price(priority_fee); - let mint_ix = program .request() - .instruction(priority_fee_ix) .accounts(nft_accounts::MintV2 { candy_machine: candy_machine_id, authority_pda,