Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
Signed-off-by: emmdim <[email protected]>
  • Loading branch information
emmdim committed Nov 16, 2023
1 parent 722fd23 commit 924022d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/js-client/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@vocdoni/gasless-voting",
"author": "Vocdoni Association",
"version": "0.0.2-rc2",
"version": "0.0.2-rc4",
"description": "Aragon DAO Gasless Voting Plugin SDK",
"license": "AGPL-3.0-or-later",
"main": "dist/index.js",
Expand Down Expand Up @@ -79,7 +79,7 @@
},
"dependencies": {
"@aragon/osx-ethers": "1.3.0-rc0.3",
"@aragon/sdk-client-common": "1.11.0",
"@aragon/sdk-client-common": "1.10.0",
"@ethersproject/abstract-signer": "^5.7.0",
"@ethersproject/bignumber": "^5.7.0",
"@ethersproject/constants": "^5.7.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/js-client/src/internal/modules/methods.ts
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ export class GaslessVotingClientMethods
this.vocdoniSDK.url,
parsedSCProposal.vochainProposalId
);
const voters = votesList.votes.map((vote) => vote.voterID);
const voters = votesList.votes.map((vote) => '0x' + vote.voterID);

const census3token = await this.vocdoniCensus3.getToken(
pluginSettings.daoTokenAddress as string,
Expand Down

0 comments on commit 924022d

Please sign in to comment.