zcash_client_sqlite: Fix a comment on range inclusion.

Co-authored-by: str4d <thestr4d@gmail.com>
This commit is contained in:
Kris Nuttycombe 2023-08-31 15:07:07 -06:00 committed by GitHub
parent bcafb7d4b4
commit 4fe9d61959
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -453,7 +453,7 @@ pub(crate) fn replace_queue_entries(
"SELECT block_range_start, block_range_end, priority
FROM scan_queue
WHERE (
-- the start is contained within the range
-- the start is contained within or adjacent to the range
:start >= block_range_start
AND :start <= block_range_end
)