Merge pull request #12 from Nashatyrev/fix/double-include-guard

Add double header include guard for kzg_proofs.h
This commit is contained in:
Ben Edgington 2021-07-09 06:26:15 +01:00 committed by GitHub
commit 1f2c946ce8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -16,6 +16,9 @@
/** @file kzg_proofs.h */
#ifndef KZG_PROOFS_H
#define KZG_PROOFS_H
#include "fft_fr.h"
#include "poly.h"
@ -41,3 +44,5 @@ C_KZG_RET check_proof_multi(bool *out, const g1_t *commitment, const g1_t *proof
C_KZG_RET new_kzg_settings(KZGSettings *ks, const g1_t *secret_g1, const g2_t *secret_g2, uint64_t length,
const FFTSettings *fs);
void free_kzg_settings(KZGSettings *ks);
#endif // KZG_PROOFS_H