Skip to content

Commit

Permalink
fix(benchmarks): set correct group members for v4
Browse files Browse the repository at this point in the history
  • Loading branch information
cedoor committed Jun 25, 2024
1 parent be34607 commit 4f52e53
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/benchmarks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"@chakra-ui/react": "^2.6.1",
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@semaphore-protocol/core": "4.0.0-beta.12",
"@semaphore-protocol/core": "4.0.0-beta.14",
"@semaphore-protocol/group": "3.15.2",
"@semaphore-protocol/identity": "3.15.2",
"@semaphore-protocol/proof": "3.15.2",
Expand Down
2 changes: 1 addition & 1 deletion apps/benchmarks/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ function App() {

setV4Times(timeValues)

let members = Array.from(Array(v3GroupMembers - 1).keys()).map((m) => BigInt(m) + 1n)
let members = Array.from(Array(v4GroupMembers - 1).keys()).map((m) => BigInt(m) + 1n)
members = [...members, identity.commitment]

const [group, time1] = await run(() => new V4.Group(members))
Expand Down

0 comments on commit 4f52e53

Please sign in to comment.