Skip to content

Commit

Permalink
fix(c/zk): clean coefficients when reading buffer from Halo2
Browse files Browse the repository at this point in the history
  • Loading branch information
chokobole committed Jul 22, 2024
1 parent 59b7713 commit acee332
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tachyon/c/zk/plonk/halo2/buffer_reader.h
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ class BufferReader<tachyon::math::UnivariateDensePolynomial<F, MaxDegree>> {
ReadBuffer(buffer, coeffs);
return tachyon::math::UnivariateDensePolynomial<F, MaxDegree>(
tachyon::math::UnivariateDenseCoefficients<F, MaxDegree>(
std::move(coeffs)));
std::move(coeffs), true));
}
}; // namespace tachyon::c::zk

Expand Down

0 comments on commit acee332

Please sign in to comment.