Skip to content

Commit

Permalink
fix: update query
Browse files Browse the repository at this point in the history
  • Loading branch information
Rekard0 committed Jul 16, 2024
1 parent 0d4826a commit f72c1d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ query MultisigMembers($where: MultisigApprover_filter!, $block: Block_height, $l
orderDirection: $direction
) {
address
isActive
}
}
`;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ describe("Client Multisig", () => {

mockedClient.request.mockResolvedValueOnce({
multisigApprovers: members.map((member) => {
return { address: member };
return { address: member, isActive: true };
}),
});

Expand Down

0 comments on commit f72c1d1

Please sign in to comment.