fix(op): empty receipts for block not counted by file client (#10581)

This commit is contained in:
Emilia Hane
2024-08-29 19:54:12 +02:00
committed by GitHub
parent a4f405afed
commit c228fe1580
2 changed files with 0 additions and 4 deletions

View File

@ -407,7 +407,6 @@ impl ChunkedFileReader {
/// chunk to read.
async fn read_next_chunk(&mut self) -> Result<Option<u64>, io::Error> {
if self.file_byte_len == 0 && self.chunk.is_empty() {
dbg!(self.chunk.is_empty());
// eof
return Ok(None)
}