Skip to content

Commit 19da06d

Browse files
committed
fix public inputs in zkprogram type: don't require pure
1 parent 53f3bb0 commit 19da06d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib/proof-system/zkprogram.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -618,8 +618,8 @@ function ZkProgram<
618618

619619
type ZkProgram<
620620
Config extends {
621-
publicInput?: ProvableTypePure;
622-
publicOutput?: ProvableTypePure;
621+
publicInput?: ProvableType;
622+
publicOutput?: ProvableType;
623623
methods: {
624624
[I in string]: {
625625
privateInputs: Tuple<PrivateInput>;

0 commit comments

Comments
 (0)