Remove a couple unnecessary todos

This commit is contained in:
Igor Katson 2024-03-30 14:07:18 +00:00
parent 0cc90f19ab
commit b42649a524

View file

@ -990,7 +990,6 @@ impl PeerHandler {
} }
}; };
// TODO: we don't need chunk info to send data. We can just read the file.
let chunk_info = match self.state.lengths.chunk_info_from_received_data( let chunk_info = match self.state.lengths.chunk_info_from_received_data(
piece_index, piece_index,
request.begin, request.begin,
@ -1005,8 +1004,6 @@ impl PeerHandler {
} }
}; };
// TODO: we only need to check if we have the piece verified. We shouldn't be
// sending unvalidated chunks.
if !self if !self
.state .state
.lock_read("is_chunk_ready_to_upload") .lock_read("is_chunk_ready_to_upload")