Skip to content

Commit

Permalink
Merge pull request #242 from gnosisguild/governor_token_validation
Browse files Browse the repository at this point in the history
fix: governor mod token validation
  • Loading branch information
juliopavila authored Aug 1, 2024
2 parents 802c296 + 376e105 commit b4ff63e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "zodiac-app",
"version": "1.5.0",
"version": "1.5.1",
"private": true,
"homepage": "./",
"type": "module",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,9 @@ export const isVotesCompilable = (provider: BrowserProvider) => async (tokenAddr
tokenContract.getVotes(RANDOM_VALID_ADDRESS),
tokenContract.getPastVotes(RANDOM_VALID_ADDRESS, RANDOM_BLOCK_NUMBER),
tokenContract.getPastTotalSupply(RANDOM_BLOCK_NUMBER),
tokenContract.delegates(RANDOM_VALID_ADDRESS),
tokenContract.delegates.staticCall(RANDOM_VALID_ADDRESS),
])
// @ts-ignore
tokenContract.functions['delegateBySig'].name
tokenContract.delegateBySig.name
} catch (e) {
console.log(e)
return false
Expand Down

0 comments on commit b4ff63e

Please sign in to comment.