Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
bryzettler committed Dec 16, 2024
1 parent fa75017 commit 675a027
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export const integrityCheckProgramAccounts = async ({

if (
!accounts.every(({ type }) =>
idl.accounts!.some(({ name }) => name === type)
idl.accounts!.some((account: { name: string }) => account.name === type)
)
) {
throw new Error("idl does not have every account type");
Expand Down

0 comments on commit 675a027

Please sign in to comment.