Skip to content

Commit

Permalink
fix(types): axis type for eds new error reporting (#447)
Browse files Browse the repository at this point in the history
  • Loading branch information
zvolin authored Oct 21, 2024
1 parent 0a6bb78 commit 4551dbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/src/rsmt2d.rs
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ impl ExtendedDataSquare {
let mut prev_ns = None;

for row in 0..square_width {
let share = check_share(row, col, prev_ns, AxisType::Row)?;
let share = check_share(row, col, prev_ns, AxisType::Col)?;
prev_ns = Some(share.namespace());
}
}
Expand Down

0 comments on commit 4551dbc

Please sign in to comment.