Skip to content

Commit

Permalink
Bump up compute budget.
Browse files Browse the repository at this point in the history
  • Loading branch information
ankur2136 committed Apr 5, 2024
1 parent e6dfc47 commit 7fbd3f1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/cli/src/commands/create/CreateCliRelease.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ const createReleaseNft = async ({
showMessage("Transaction Failure", errorMsg, "error");
process.exit(-1)
} else {
const retryMsg = errorMsg + "\nWill Retry transaction"
const retryMsg = errorMsg + "\nWill Retry minting release"
showMessage("Transaction Failure", retryMsg, "standard");
}
}
Expand Down
4 changes: 2 additions & 2 deletions packages/core/src/CoreUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ export const mintNft = async (

txBuilder.prepend({
instruction: ComputeBudgetProgram.setComputeUnitLimit({
units: 250000,
units: 300000,
}),
signers: [],
});

txBuilder.prepend({
instruction: ComputeBudgetProgram.setComputeUnitPrice({
microLamports: 1000000,
microLamports: 2000000,
}),
signers: [],
});
Expand Down

0 comments on commit 7fbd3f1

Please sign in to comment.