Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update com.rs
  • Loading branch information
vbhattaccmu committed Jul 22, 2025
commit a937b170c88b827f3a73bf49eb6607f01afb5aeb
2 changes: 1 addition & 1 deletion kate/recovery/src/com.rs
Original file line number Diff line number Diff line change
Expand Up @@ -217,10 +217,10 @@
#[cfg(feature = "std")]
pub fn reconstruct_columns(
dimensions: matrix::Dimensions,
cells: &[data::SingleCell],
cells: &[data::Cell],
) -> Result<HashMap<u16, Vec<[u8; CHUNK_SIZE]>>, ReconstructionError> {
// Convert cells into DataCells
let data_cells: Vec<data::DataCell> = cells.iter().cloned().map(Into::into).collect();

Check failure on line 223 in kate/recovery/src/com.rs

View workflow job for this annotation

GitHub Actions / build_and_test

the trait bound `data::DataCell: std::convert::From<data::Cell>` is not satisfied

Check failure on line 223 in kate/recovery/src/com.rs

View workflow job for this annotation

GitHub Actions / build_and_test

the trait bound `data::DataCell: std::convert::From<data::Cell>` is not satisfied

Check failure on line 223 in kate/recovery/src/com.rs

View workflow job for this annotation

GitHub Actions / build_and_test

the trait bound `data::DataCell: std::convert::From<data::Cell>` is not satisfied

// Map cells by column
let columns = map_cells(dimensions, data_cells)?;
Expand Down
Loading