Skip to content

Commit

Permalink
reversed the tokenVoting isMember query id order
Browse files Browse the repository at this point in the history
  • Loading branch information
sepehr2github committed Nov 29, 2023
1 parent 1a4657d commit 19943e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions modules/client/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ TEMPLATE:
### Fixed

- Added missing security check that checks that the `to` address in the permission actions is the DAO address
- Fix isMember function for tokenVoting DAOs by reversing the query id order

## [1.19.2]

Expand Down
2 changes: 1 addition & 1 deletion modules/client/src/multisig/internal/client/methods.ts
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,7 @@ export class MultisigClientMethods extends ClientCore
query,
params: {
id:
`${params.pluginAddress.toLowerCase()}_${params.address.toLowerCase()}`,
`${params.address.toLowerCase()}_${params.pluginAddress.toLowerCase()}`,
blockHeight: params.blockNumber ? { number: params.blockNumber } : null,
},
name,
Expand Down

0 comments on commit 19943e2

Please sign in to comment.