Replies: 2 comments 4 replies
-
Can you post the full runnable example you are using? Better way would be to use the built-in |
Beta Was this translation helpful? Give feedback.
4 replies
-
That answer |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am trying to imitate the process of one person sending another the proof, vk, and public input to let the other person verify the correctness. However, I have trouble reading the proof and vk. I used json.Marshal() to save them into json files, but not able to read them. by using :
vkJSON, _ := os.ReadFile("gnark_vk.json");
var vk []byte
_ = json.Unmarshal(vkJSON, &vk);
The vk will always be nil. Does anyone know how to solve this?
Beta Was this translation helpful? Give feedback.
All reactions