Skip to content

Commit

Permalink
change validateStateAccount writable to false (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
solonk8 authored Apr 17, 2024
1 parent bda2e77 commit a9302c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sdk/src/transferHookProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,12 +109,12 @@ export class MintExtTransferHookProvider implements TransferHookProvider {
{
pubkey: this.transferHookProgramId,
isSigner: false,
isWritable: true,
isWritable: false,
},
{
pubkey: validateStateAccount,
isSigner: false,
isWritable: true,
isWritable: false,
},
...previousMetas,
];
Expand Down

0 comments on commit a9302c1

Please sign in to comment.