From: Jakob Cornell Date: Mon, 18 Apr 2022 23:21:39 +0000 (-0500) Subject: Fix typo in v2 verify worklist generation X-Git-Url: https://jcornell.net/gitweb/gitweb.cgi?a=commitdiff_plain;h=514d1db2e6e7263e56520fb6f8f99cf5e2ca6eee;p=eros.git Fix typo in v2 verify worklist generation --- diff --git a/disk_jumble/src/disk_jumble/verify.py b/disk_jumble/src/disk_jumble/verify.py index 49cf28b..df6b5f3 100644 --- a/disk_jumble/src/disk_jumble/verify.py +++ b/disk_jumble/src/disk_jumble/verify.py @@ -250,7 +250,7 @@ def _get_v2_worklist(conn, disk_id: int, target_ranges: List[NumericRange]) -> L block_ranges = [range(block, block + 1)], hash = bytes(hash_), ) - for (entity_id, entity_length, piece_num, block, entity_length, hash_, _) in rows + for (entity_id, entity_length, piece_num, block, hash_, _) in rows ]