Skip to content

Commit

Permalink
test(circuits): add type assertion for secret value
Browse files Browse the repository at this point in the history
  • Loading branch information
cedoor committed Feb 28, 2024
1 parent 9c23fc7 commit c4dd1e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/circuits/tests/semaphore.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ describe("semaphore", () => {
}

const INPUT = {
secret: deriveSecretScalar(secret),
secret: deriveSecretScalar(secret) as `${number}`,
merkleProofLength: tree.depth,
merkleProofIndices,
merkleProofSiblings,
Expand Down

0 comments on commit c4dd1e4

Please sign in to comment.