Skip to content

Commit

Permalink
fix(poseidon-proof): fix ts errors
Browse files Browse the repository at this point in the history
  • Loading branch information
cedoor committed Nov 24, 2023
1 parent c23ce9c commit 3b40b32
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/poseidon-proof/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import generate from "./generate"
import verify from "./verify.1"
import verify from "./verify"

export * from "./types"
export { generate, verify }
2 changes: 1 addition & 1 deletion packages/poseidon-proof/src/packProof.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Groth16Proof } from "snarkjs"
import { Groth16Proof } from "@zk-kit/groth16"
import { PackedProof } from "./types"

/**
Expand Down
2 changes: 1 addition & 1 deletion packages/poseidon-proof/src/unpackProof.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Groth16Proof } from "snarkjs"
import { Groth16Proof } from "@zk-kit/groth16"
import { PackedProof } from "./types"

/**
Expand Down

0 comments on commit 3b40b32

Please sign in to comment.