···371 }
372 }
37300000374 // turn the car slice into a map of cid:block
375 let car_reader = iroh_car::CarReader::new(commit.blocks.as_slice()).await?;
376 let blocks = car_reader
···371 }
372 }
373374+ if commit.ops.is_empty() || commit.blocks.is_empty() {
375+ tracing::debug!("skipping commit with no ops/data");
376+ return Ok(());
377+ }
378+379 // turn the car slice into a map of cid:block
380 let car_reader = iroh_car::CarReader::new(commit.blocks.as_slice()).await?;
381 let blocks = car_reader