-
Notifications
You must be signed in to change notification settings - Fork 300
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updated to run on localnet #98
Conversation
@@ -25,7 +25,7 @@ describe('NFT Minter', () => { | |||
|
|||
const transactionSignature = await program.methods | |||
.mintNft(metadata.name, metadata.symbol, metadata.uri) | |||
.accounts({ | |||
.accountsPartial({ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this because of anchor 0.30.x's pda auto resolution?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes. Added just to be explicit, in the example, on the account to pass in the instruction
some of those programs are missing pnpm-lock.yaml in tests and hence are failing. For fix, make sure to install packages using https://pnpm.io/ and commit the yaml file 🫡 More in contributing guidelines |
The programs already contained a pnpm-lock.yaml that is now up to date with package.json |
No description provided.