Skip to content

Commit

Permalink
remove piece check
Browse files Browse the repository at this point in the history
  • Loading branch information
mh0lt committed May 26, 2024
1 parent 3e5934a commit ffc844d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion request-strategy/order.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ func GetRequestablePieces(
}
*storageLeft -= pieceLength
}
if !piece.Request() || piece.NumPendingChunks() == 0 {
if /*!piece.Request() ||*/ piece.NumPendingChunks() == 0 {
// TODO: Clarify exactly what is verified. Stuff that's being hashed should be
// considered unverified and hold up further requests.
return true
Expand Down

0 comments on commit ffc844d

Please sign in to comment.