Fix captions

This commit is contained in:
Alexey Osipov 2022-11-16 19:43:36 +03:00
parent 9fa293effc
commit e812599c2c
1 changed files with 2 additions and 1 deletions

View File

@ -19,13 +19,14 @@ void TestProofs(char * path){
int res0 = compute_aggregate_kzg_proof_wrap(proof, blob, 1, s);
blob_to_kzg_commitment_wrap(commitment, blob, s);
// commitment
FILE *f = fopen("output.txt", "wt");
// blob
for(int i = 0; i< 4096*32; i++){
fprintf(f, "%02x", blob[i]);
}
fprintf(f, "\n");
// commitment
for(int i = 0; i< 48; i++){
fprintf(f, "%02x", commitment[i]);
}