Skip to content

Commit 88cbde0

Browse files
authored
Fix tracing bug (#186)
1 parent 50f55a2 commit 88cbde0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ntt/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ pub use self::{
2929
/// This function computes the RS-code for each interleaved message and
3030
/// outputs the interleaved alphabets in the same order as the input.
3131
///
32-
#[cfg_attr(feature = "tracing", instrument(skip(poly), fields(size = poly.len())))]
32+
#[cfg_attr(feature = "tracing", instrument(skip(interleaved_coeffs), fields(size = interleaved_coeffs.len())))]
3333
pub fn interleaved_rs_encode<F: FftField>(
3434
interleaved_coeffs: &[F],
3535
expansion: usize,

0 commit comments

Comments
 (0)