compute_powers(): Be consistent about argument types

This commit is contained in:
George Kadianakis 2022-12-02 12:35:24 +02:00
parent 80fe1cb3e0
commit bcf14e7662
1 changed files with 1 additions and 1 deletions

View File

@ -825,7 +825,7 @@ void free_trusted_setup(KZGSettings *s) {
free_kzg_settings(s);
}
static void compute_powers(fr_t out[], BLSFieldElement *x, uint64_t n) {
static void compute_powers(BLSFieldElement out[], BLSFieldElement *x, uint64_t n) {
BLSFieldElement current_power = fr_one;
for (uint64_t i = 0; i < n; i++) {
out[i] = current_power;