You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that a simple zkprogram I created did not compile in the browser. Then I tried to compile the zkprogram in the tutorial to see if the problem was with my program, but it did not compile either. Finally, when I removed the "SelfProof" parts in the zkprogram and compiled it, I saw that the process was completed without any problems. That's why I decided to open an issue about this.
I noticed that a simple zkprogram I created did not compile in the browser. Then I tried to compile the zkprogram in the tutorial to see if the problem was with my program, but it did not compile either. Finally, when I removed the "SelfProof" parts in the zkprogram and compiled it, I saw that the process was completed without any problems. That's why I decided to open an issue about this.
Tutorial ZkProgram
`
const Add = ZkProgram({
name: 'add-example',
publicInput: Field,
methods: {
init: {
privateInputs: [],
},
});
`
The text was updated successfully, but these errors were encountered: